diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-06-18 23:41:35 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-06-18 23:41:35 +0000 |
| commit | a93ca92379129e87e0130609ac78422fcf6dd21e (patch) | |
| tree | 6ef33f510f42c2929afc99804f0195ebd521de2f /lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | |
| parent | 7e816dc175477479748048bf2f40da7f54e07888 (diff) | |
| download | external_llvm-a93ca92379129e87e0130609ac78422fcf6dd21e.zip external_llvm-a93ca92379129e87e0130609ac78422fcf6dd21e.tar.gz external_llvm-a93ca92379129e87e0130609ac78422fcf6dd21e.tar.bz2 | |
move mangler quote handling from asm printers to TargetAsmInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73738 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp')
| -rw-r--r-- | lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp index e4783c1..f04310c 100644 --- a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp @@ -654,9 +654,6 @@ bool PPCLinuxAsmPrinter::doInitialization(Module &M) { assert(DW && "DwarfWriter is not available"); DW->BeginModule(&M, MMI, O, this, TAI); - // GNU as handles section names wrapped in quotes - Mang->setUseQuotes(true); - SwitchToSection(TAI->getTextSection()); return Result; @@ -885,9 +882,6 @@ bool PPCDarwinAsmPrinter::doInitialization(Module &M) { assert(DW && "DwarfWriter is not available"); DW->BeginModule(&M, MMI, O, this, TAI); - // Darwin wants symbols to be quoted if they have complex names. - Mang->setUseQuotes(true); - // Prime text sections so they are adjacent. This reduces the likelihood a // large data or debug section causes a branch to exceed 16M limit. SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced," |
