From: Chris Lattner Date: Sat, 16 Jan 2010 20:53:11 +0000 (+0000) Subject: unbreak the build. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6dfdad9c0623212d1506c24e20d6a94deeb73980;p=oota-llvm.git unbreak the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93654 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 4a85c84bc65..29f5480fb6b 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/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);