diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-10-17 17:17:24 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-10-17 17:17:24 +0000 |
commit | 99e41eed6d8b89b2ba4807625d13d08d85ea493d (patch) | |
tree | 73fc26191f3dbb07845ac878fbf8ec06c2aac2be /lib/CodeGen/AsmPrinter.cpp | |
parent | c50ffcb7fcb7c1109fee2406e8f74d096f755f47 (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/AsmPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index e9542fc6c1..90d77adfb3 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -352,11 +352,12 @@ unsigned AsmPrinter::getPreferredAlignmentLog(const GlobalVariable *GV) const { /// getGlobalLinkName - Returns the asm/link name of of the specified /// global variable. Should be overridden by each target asm printer to /// generate the appropriate value. -void AsmPrinter::getGlobalLinkName(const GlobalVariable *GV, - std::string &LinkName) { +const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{ + std::string LinkName; // Default action is to use a global symbol. LinkName = TAI->getGlobalPrefix(); LinkName += GV->getName(); + return LinkName; } // EmitAlignment - Emit an alignment directive to the specified power of two. |