commit | 688920e511dddd8d7e031473ac01c6f56b650d15 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Jul 14 06:20:20 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Jul 14 06:20:20 2009 +0000 |
tree | 4ef55bb60194e9884a8880bed71bc90be8df2a02 | |
parent | 6ec9f40ac743243393c9005718344a0d9d2bed18 [diff] [blame] |
Rename getValueName -> getMangledName llvm-svn: 75618
diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp index a26f93b..b79560e 100644 --- a/llvm/lib/CodeGen/ELFWriter.cpp +++ b/llvm/lib/CodeGen/ELFWriter.cpp
@@ -601,7 +601,7 @@ // Use the name mangler to uniquify the LLVM symbol. std::string Name; - if (I->GV) Name.append(Mang->getValueName(I->GV)); + if (I->GV) Name.append(Mang->getMangledName(I->GV)); if (Name.empty()) { I->NameIdx = 0;