OSDN Git Service

Preserve prior behavior
authorChris Lattner <sabre@nondot.org>
Tue, 9 May 2006 05:15:24 +0000 (05:15 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 9 May 2006 05:15:24 +0000 (05:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28187 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86IntelAsmPrinter.cpp

index 4bc0e10..0081ba8 100755 (executable)
@@ -381,8 +381,7 @@ bool X86IntelAsmPrinter::doFinalization(Module &M) {
   
   // Bypass X86SharedAsmPrinter::doFinalization().
   AsmPrinter::doFinalization(M);
-  SwitchToDataSection("_data", 0);
-  O << "_data\tends\n";
+  SwitchToDataSection("", 0);
   O << "\tend\n";
   return false; // success
 }