eliminate uses of getMangledName from AsmPrinter.cpp, last up is

dwarf emission which is going to be more invasive.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93645 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-01-16 18:17:26 +00:00
parent 469340493c
commit 08ce3b473d

View File

@ -163,13 +163,17 @@ bool AsmPrinter::doFinalization(Module &M) {
// Print out module-level global variables here. // Print out module-level global variables here.
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
I != E; ++I) { I != E; ++I) {
if (I->hasExternalWeakLinkage()) if (!I->hasExternalWeakLinkage()) continue;
O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n'; O << MAI->getWeakRefDirective();
GetGlobalValueSymbol(I)->print(O, MAI);
O << '\n';
} }
for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) { for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
if (I->hasExternalWeakLinkage()) if (!I->hasExternalWeakLinkage()) continue;
O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n'; O << MAI->getWeakRefDirective();
GetGlobalValueSymbol(I)->print(O, MAI);
O << '\n';
} }
} }
@ -828,7 +832,7 @@ void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
// This is a constant address for a global variable or function. Use the // This is a constant address for a global variable or function. Use the
// name of the variable or function as the address value. // name of the variable or function as the address value.
O << Mang->getMangledName(GV); GetGlobalValueSymbol(GV)->print(O, MAI);
return; return;
} }