From: Anton Korobeynikov Date: Sat, 7 Nov 2009 17:12:38 +0000 (+0000) Subject: Use '.L' for global private prefix (as mspgcc) X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5c192fbe450d0a541a40cbbf4746b6957015dc89;p=oota-llvm.git Use '.L' for global private prefix (as mspgcc) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86380 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/MSP430/MSP430MCAsmInfo.cpp b/lib/Target/MSP430/MSP430MCAsmInfo.cpp index 069313e2ef0..d4ee1f1192b 100644 --- a/lib/Target/MSP430/MSP430MCAsmInfo.cpp +++ b/lib/Target/MSP430/MSP430MCAsmInfo.cpp @@ -17,4 +17,5 @@ using namespace llvm; MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, const StringRef &TT) { AlignmentIsInBytes = false; AllowNameToStartWithDigit = true; + PrivateGlobalPrefix = ".L"; }