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
This commit is contained in:
Chris Lattner
2003-05-08 16:18:31 +00:00
parent cdf5178f83
commit da82ed52ac
7 changed files with 95 additions and 178 deletions

View File

@ -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();
}