aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/DwarfWriter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-10-17 17:17:24 +0000
committerJim Laskey <jlaskey@mac.com>2006-10-17 17:17:24 +0000
commit99e41eed6d8b89b2ba4807625d13d08d85ea493d (patch)
tree73fc26191f3dbb07845ac878fbf8ec06c2aac2be /lib/CodeGen/DwarfWriter.cpp
parentc50ffcb7fcb7c1109fee2406e8f74d096f755f47 (diff)
Clean up interface to getGlobalLinkName.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfWriter.cpp')
-rw-r--r--lib/CodeGen/DwarfWriter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp
index 1c52c5bf5d..1d08d07a8a 100644
--- a/lib/CodeGen/DwarfWriter.cpp
+++ b/lib/CodeGen/DwarfWriter.cpp
@@ -1634,8 +1634,7 @@ DIE *DwarfWriter::NewGlobalVariable(GlobalVariableDesc *GVD) {
AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
// Work up linkage name.
- std::string LinkageName;
- Asm->getGlobalLinkName(GV, LinkageName);
+ const std::string LinkageName = Asm->getGlobalLinkName(GV);
// Add address.
DIEBlock *Block = new DIEBlock();