diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-14 06:19:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-14 06:19:21 +0000 |
commit | c2c89fba60dadb27b319b32c86cdba71e2acb4ad (patch) | |
tree | 3c15437e8836580308dd90370644bba900e45d33 /lib/Target/CBackend/CBackend.cpp | |
parent | b5851462d08bc4d5c3f8348faac9fd2f6387d078 (diff) |
rename getValueName -> getMangledName
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75617 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index c3c2b0ed43..38ce21827f 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -1432,7 +1432,7 @@ void CWriter::printConstantWithCast(Constant* CPV, unsigned Opcode) { std::string CWriter::GetValueName(const Value *Operand) { // Mangle globals with the standard mangler interface for LLC compatibility. if (const GlobalValue *GV = dyn_cast<GlobalValue>(Operand)) - return Mang->getValueName(GV); + return Mang->getMangledName(GV); std::string Name = Operand->getName(); |