From: Chris Lattner Date: Wed, 3 Jan 2007 18:16:48 +0000 (+0000) Subject: Private labels start with .L on linux, not just . X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a3bfdd47abddaebf8e36eb9f54527c235f61b9c1;p=oota-llvm.git Private labels start with .L on linux, not just . git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32841 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp index 4a0c1e78c6d..bfd5858a078 100644 --- a/lib/Target/X86/X86TargetAsmInfo.cpp +++ b/lib/Target/X86/X86TargetAsmInfo.cpp @@ -86,7 +86,7 @@ X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) { // 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,\"\",@progbits";