[llvm-commits] CVS: llvm/lib/Target/X86/X86TargetAsmInfo.cpp

Chris Lattner sabre at nondot.org
Wed Jan 3 10:17:03 PST 2007



Changes in directory llvm/lib/Target/X86:

X86TargetAsmInfo.cpp updated: 1.16 -> 1.17
---
Log message:

Private labels start with .L on linux, not just .


---
Diffs of the changes:  (+1 -1)

 X86TargetAsmInfo.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/X86/X86TargetAsmInfo.cpp
diff -u llvm/lib/Target/X86/X86TargetAsmInfo.cpp:1.16 llvm/lib/Target/X86/X86TargetAsmInfo.cpp:1.17
--- llvm/lib/Target/X86/X86TargetAsmInfo.cpp:1.16	Wed Jan  3 11:24:11 2007
+++ llvm/lib/Target/X86/X86TargetAsmInfo.cpp	Wed Jan  3 12:16:48 2007
@@ -86,7 +86,7 @@
     // bool HasDotLoc; // Defaults to false.
     // HasDotFile - True if target asm supports .file directives.
     // bool HasDotFile; // Defaults to false.
-    PrivateGlobalPrefix = ".";  // Prefix for private global symbols
+    PrivateGlobalPrefix = ".L";
     WeakRefDirective = "\t.weak\t";
     DwarfRequiresFrameSection = false;
     DwarfAbbrevSection =  "\t.section\t.debug_abbrev,\"\", at progbits";






More information about the llvm-commits mailing list