aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Support.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-28 04:55:14 +0000
committerChris Lattner <sabre@nondot.org>2002-04-28 04:55:14 +0000
commit2312b1c59496070cdbd8ff3d7b21d6cd850f7c98 (patch)
tree9bba5fedfd3c42a17f8f61ee71f607130da7b325 /lib/ExecutionEngine/Interpreter/Support.cpp
parent67e08db3b97e83637c596e3ef4866e64552762cc (diff)
Eliminate use of SymTabValue class
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Support.cpp')
-rw-r--r--lib/ExecutionEngine/Interpreter/Support.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Support.cpp b/lib/ExecutionEngine/Interpreter/Support.cpp
index cac3b74c82..aa97621214 100644
--- a/lib/ExecutionEngine/Interpreter/Support.cpp
+++ b/lib/ExecutionEngine/Interpreter/Support.cpp
@@ -14,9 +14,9 @@ using std::cout;
//
// LookupMatchingNames helper - Search a symbol table for values matching Name.
//
-static inline void LookupMatchingNames(const std::string &Name,SymTabValue &STV,
+static inline void LookupMatchingNames(const std::string &Name,
+ SymbolTable *SymTab,
std::vector<Value*> &Results) {
- SymbolTable *SymTab = STV.getSymbolTable();
if (SymTab == 0) return; // No symbolic values :(
// Loop over all of the type planes in the symbol table...
@@ -40,8 +40,8 @@ std::vector<Value*> Interpreter::LookupMatchingNames(const std::string &Name) {
std::vector<Value*> Results;
Function *CurMeth = getCurrentMethod();
- if (CurMeth) ::LookupMatchingNames(Name, *CurMeth, Results);
- if (CurMod ) ::LookupMatchingNames(Name, *CurMod , Results);
+ if (CurMeth) ::LookupMatchingNames(Name, CurMeth->getSymbolTable(), Results);
+ if (CurMod ) ::LookupMatchingNames(Name, CurMod ->getSymbolTable(), Results);
return Results;
}