aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-18 23:41:35 +0000
committerChris Lattner <sabre@nondot.org>2009-06-18 23:41:35 +0000
commita93ca92379129e87e0130609ac78422fcf6dd21e (patch)
tree6ef33f510f42c2929afc99804f0195ebd521de2f /lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
parent7e816dc175477479748048bf2f40da7f54e07888 (diff)
downloadexternal_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/X86/AsmPrinter/X86ATTAsmPrinter.cpp')
-rw-r--r--lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp b/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
index df24fc1..0f2463e 100644
--- a/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
+++ b/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
@@ -781,10 +781,6 @@ bool X86ATTAsmPrinter::doInitialization(Module &M) {
DW->BeginModule(&M, MMI, O, this, TAI);
}
- // Darwin wants symbols to be quoted if they have complex names.
- if (Subtarget->isTargetDarwin())
- Mang->setUseQuotes(true);
-
return Result;
}