Basic support for getGlobalLinkName.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30997 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Laskey
2006-10-17 13:41:07 +00:00
parent f621abca9e
commit a1a19f803c
3 changed files with 20 additions and 3 deletions

View File

@ -1634,8 +1634,8 @@ DIE *DwarfWriter::NewGlobalVariable(GlobalVariableDesc *GVD) {
AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
// Work up linkage name.
std::string LinkageName(TAI->getGlobalPrefix());
LinkageName += GV->getName();
std::string LinkageName;
Asm->getGlobalLinkName(GV, LinkageName);
// Add address.
DIEBlock *Block = new DIEBlock();