mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
ExecutionEngine::create no longer takes a TraceMode argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9488 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -47,18 +47,17 @@ ExecutionEngine::~ExecutionEngine() {
|
||||
/// NULL is returned.
|
||||
///
|
||||
ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
|
||||
bool ForceInterpreter,
|
||||
bool TraceMode) {
|
||||
bool ForceInterpreter) {
|
||||
ExecutionEngine *EE = 0;
|
||||
|
||||
// If there is nothing that is forcing us to use the interpreter, make a JIT.
|
||||
if (!ForceInterpreter && !TraceMode)
|
||||
// Unless the interpreter was explicitly selected, make a JIT.
|
||||
if (!ForceInterpreter)
|
||||
EE = VM::create(MP);
|
||||
|
||||
// If we can't make a JIT, make an interpreter instead.
|
||||
try {
|
||||
if (EE == 0)
|
||||
EE = Interpreter::create(MP->materializeModule(), TraceMode);
|
||||
EE = Interpreter::create(MP->materializeModule());
|
||||
} catch (...) {
|
||||
EE = 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user