aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-31 07:08:19 +0000
committerChris Lattner <sabre@nondot.org>2003-12-31 07:08:19 +0000
commit69284b03d1dc7ebdc2ce22f65afe5ef04cc01cf4 (patch)
tree85f25335d137000cf3232c0cfe16fbb42873b1e9
parentb0fa6599811adac127f95289567dc20d97187442 (diff)
Make the lookup method const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10667 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/SymbolTable.h2
-rw-r--r--lib/VMCore/SymbolTable.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h
index 8502375581..22a9acd438 100644
--- a/include/llvm/SymbolTable.h
+++ b/include/llvm/SymbolTable.h
@@ -42,7 +42,7 @@ public:
~SymbolTable();
// lookup - Returns null on failure...
- Value *lookup(const Type *Ty, const std::string &name);
+ Value *lookup(const Type *Ty, const std::string &name) const;
// insert - Add named definition to the symbol table...
inline void insert(Value *N) {
diff --git a/lib/VMCore/SymbolTable.cpp b/lib/VMCore/SymbolTable.cpp
index 8c9e86c003..be1459e70b 100644
--- a/lib/VMCore/SymbolTable.cpp
+++ b/lib/VMCore/SymbolTable.cpp
@@ -72,10 +72,10 @@ std::string SymbolTable::getUniqueName(const Type *Ty,
// lookup - Returns null on failure...
-Value *SymbolTable::lookup(const Type *Ty, const std::string &Name) {
- iterator I = find(Ty);
+Value *SymbolTable::lookup(const Type *Ty, const std::string &Name) const {
+ const_iterator I = find(Ty);
if (I != end()) { // We have symbols in that plane...
- type_iterator J = I->second.find(Name);
+ type_const_iterator J = I->second.find(Name);
if (J != I->second.end()) // and the name is in our hash table...
return J->second;
}