diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-16 20:53:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-16 20:53:11 +0000 |
commit | d3b18088763383158bb7f86cf1079aa6f9f85a53 (patch) | |
tree | 5a0a10df19dda9b1aa8c15998019e9ac9bdaa3bc /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | edf8f390031fbbe4aa8c9d17d3cf18230f77c46d (diff) | |
download | bcm5719-llvm-d3b18088763383158bb7f86cf1079aa6f9f85a53.tar.gz bcm5719-llvm-d3b18088763383158bb7f86cf1079aa6f9f85a53.zip |
unbreak the build.
llvm-svn: 93654
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 4a85c84bc65..29f5480fb6b 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -105,12 +105,6 @@ bool AsmPrinter::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); - // Allow the target to emit any magic that it wants at the start of the file. EmitStartOfAsmFile(M); |