mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
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:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user