diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-10-17 13:41:07 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-10-17 13:41:07 +0000 |
commit | 7126254a0e1cb8eefa6c25498347481cbfa6b2fd (patch) | |
tree | f0f92402919e1aa16c4e48c184417e12b5b8afc6 /llvm/lib/CodeGen/DwarfWriter.cpp | |
parent | 418c8e69bb20311c9e594c31e8d05e4dccddb758 (diff) | |
download | bcm5719-llvm-7126254a0e1cb8eefa6c25498347481cbfa6b2fd.tar.gz bcm5719-llvm-7126254a0e1cb8eefa6c25498347481cbfa6b2fd.zip |
Basic support for getGlobalLinkName.
llvm-svn: 30997
Diffstat (limited to 'llvm/lib/CodeGen/DwarfWriter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/DwarfWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index 8fe8b4e7627..1c52c5bf5d1 100644 --- a/llvm/lib/CodeGen/DwarfWriter.cpp +++ b/llvm/lib/CodeGen/DwarfWriter.cpp @@ -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(); |