diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-03 14:53:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-03 14:53:21 +0000 |
commit | 7fac070215c8d4fd4a41ae58750e6c1faef4931f (patch) | |
tree | 65568c242ce17aae14e6f3319ae88b056aa1f474 /llvm/lib/ExecutionEngine/Interpreter | |
parent | 23356658b3a2dba4126d82e8e062585ad83f1b20 (diff) | |
download | bcm5719-llvm-7fac070215c8d4fd4a41ae58750e6c1faef4931f.tar.gz bcm5719-llvm-7fac070215c8d4fd4a41ae58750e6c1faef4931f.zip |
* Both Method & GlobalVariable now subclass GlobalValue
* ConstPoolPointerReference now represents a pointer to a GlobalValue
* Methods name references are now explicit pointers to methods
* Rename Value::GlobalVal to Value::GlobalVariableVal to avoid confusion
llvm-svn: 703
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index 8b2db6f73c0..4c2039ded4c 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -45,7 +45,7 @@ static ExFunc lookupMethod(const Method *M) { // Function not found, look it up... start by figuring out what the // composite function name should be. string ExtName = "lle_"; - const MethodType *MT = M->getType(); + const MethodType *MT = M->getMethodType(); for (unsigned i = 0; const Type *Ty = MT->getContainedType(i); ++i) ExtName += getTypeID(Ty); ExtName += "_" + M->getName(); @@ -72,7 +72,7 @@ void Interpreter::callExternalMethod(Method *M, } // TODO: FIXME when types are not const! - GenericValue Result = Fn(const_cast<MethodType*>(M->getType()), ArgVals); + GenericValue Result = Fn(const_cast<MethodType*>(M->getMethodType()),ArgVals); // Copy the result back into the result variable if we are not returning void. if (M->getReturnType() != Type::VoidTy) { |