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 | 334fd1f259b3e8aaf83cf0d40f74af5b209770e6 (patch) | |
tree | 41139ea036200a44e0739afc58707eba3414bbbd /lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | 58665d47aea69875c433fb039c8f10106abc1cee (diff) |
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/DwarfException.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 9efa1eadac..abd2e6fe80 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -872,8 +872,7 @@ void DwarfException::EmitExceptionTable() { PrintRelDirective(); if (GV) { - std::string GLN; - O << Asm->getGlobalLinkName(GV, GLN); + O << Asm->Mang->getMangledName(GV); } else { O << "0x0"; } |