diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-08 16:18:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-08 16:18:31 +0000 |
commit | da82ed52ac02497d343b898cca0bb2cf303f062d (patch) | |
tree | a30e76da9aaa7ff025a59804315b601994bd6ca3 /lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | cdf5178f8362b0b415a4e1c1378a5b76638826be (diff) |
A large number of simple changes:
* s/Method/Function
* Kill some obsolete (external) functions that used to be to support tracing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6041 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 5c116757ca..1c41841b81 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -32,7 +32,7 @@ Interpreter::Interpreter(Module *M, unsigned Config, setTargetData(TD); // Initialize the "backend" initializeExecutionEngine(); - initializeExternalMethods(); + initializeExternalFunctions(); CW.setModule(M); // Update Writer } @@ -42,7 +42,7 @@ int Interpreter::run(const std::string &MainFunction, const std::vector<std::string> &Args) { // Start interpreter into the main function... // - if (!callMainMethod(MainFunction, Args) && !Debug) { + if (!callMainFunction(MainFunction, Args) && !Debug) { // If not in debug mode and if the call succeeded, run the code now... run(); } |