diff options
Diffstat (limited to 'lib/VMCore/Value.cpp')
-rw-r--r-- | lib/VMCore/Value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index c7af931359..4d4944c010 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -112,7 +112,7 @@ static bool getSymTab(Value *V, ValueSymbolTable *&ST) { return false; } -std::string Value::getName() const { +std::string Value::getNameStr() const { if (Name == 0) return ""; return std::string(Name->getKeyData(), Name->getKeyData()+Name->getKeyLength()); |