diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-09-16 00:08:41 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-09-16 00:08:41 +0000 |
| commit | 5632fabd0a6e1f30e9cbbd6c2b6d3dce6dcc656a (patch) | |
| tree | 41139ea036200a44e0739afc58707eba3414bbbd /lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
| parent | fe0e2534a5b2b89019a3d0ed2b55b0acb5ae4498 (diff) | |
| download | external_llvm-5632fabd0a6e1f30e9cbbd6c2b6d3dce6dcc656a.zip external_llvm-5632fabd0a6e1f30e9cbbd6c2b6d3dce6dcc656a.tar.gz external_llvm-5632fabd0a6e1f30e9cbbd6c2b6d3dce6dcc656a.tar.bz2 | |
eliminate the horrid AsmPrinter::getGlobalLinkName method, inlining
it into all of its call sites and simplifying them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81962 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
| -rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 577f111..750f3cb 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -23,6 +23,7 @@ #include "llvm/Target/TargetLoweringObjectFile.h" #include "llvm/Target/TargetRegisterInfo.h" #include "llvm/ADT/StringExtras.h" +#include "llvm/Support/Mangler.h" #include "llvm/Support/Timer.h" #include "llvm/Support/Debug.h" #include "llvm/System/Path.h" @@ -1501,9 +1502,8 @@ void DwarfDebug::ConstructGlobalVariableDIE(MDNode *N) { // Add address. DIEBlock *Block = new DIEBlock(); AddUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr); - std::string GLN; AddObjectLabel(Block, 0, dwarf::DW_FORM_udata, - Asm->getGlobalLinkName(DI_GV.getGlobal(), GLN)); + Asm->Mang->getMangledName(DI_GV.getGlobal())); AddBlock(VariableDie, dwarf::DW_AT_location, 0, Block); // Add to map. |
