summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachOWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-16 19:08:51 +0000
committerChris Lattner <sabre@nondot.org>2010-01-16 19:08:51 +0000
commit848d0f37d2ef3c8418380d5f7f3dd083a132fe48 (patch)
treeced4edf2431daa91886e4aa2037dabc0cb9a2494 /lib/CodeGen/MachOWriter.cpp
parent858431d0bc81ddab11363cc0eb2889dbfdc8362b (diff)
downloadllvm-848d0f37d2ef3c8418380d5f7f3dd083a132fe48.tar.gz
llvm-848d0f37d2ef3c8418380d5f7f3dd083a132fe48.tar.bz2
llvm-848d0f37d2ef3c8418380d5f7f3dd083a132fe48.tar.xz
Mangler::getMangledName is now dead, remove it and all the other stuff in Mangler that is now transitively dead. woo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachOWriter.cpp')
-rw-r--r--lib/CodeGen/MachOWriter.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/CodeGen/MachOWriter.cpp b/lib/CodeGen/MachOWriter.cpp
index cab71cea0d..23e5c4bd26 100644
--- a/lib/CodeGen/MachOWriter.cpp
+++ b/lib/CodeGen/MachOWriter.cpp
@@ -72,12 +72,6 @@ bool MachOWriter::doInitialization(Module &M) {
Mang = new Mangler(M, MAI->getGlobalPrefix(), MAI->getPrivateGlobalPrefix(),
MAI->getLinkerPrivateGlobalPrefix());
- if (MAI->doesAllowQuotesInName())
- Mang->setUseQuotes(true);
-
- if (MAI->doesAllowNameToStartWithDigit())
- Mang->setSymbolsCanStartWithDigit(true);
-
// Initialize TargetLoweringObjectFile.
TM.getTargetLowering()->getObjFileLowering().Initialize(OutContext, TM);