mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-12 19:18:48 +00:00
TraceMode, as you may have heard, is history.
ExecutionEngine::create no longer takes a TraceMode argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c7a3a2d7f
commit
2f828c343b
@ -39,8 +39,6 @@ namespace {
|
|||||||
MainFunction("f", cl::desc("Function to execute"), cl::init("main"),
|
MainFunction("f", cl::desc("Function to execute"), cl::init("main"),
|
||||||
cl::value_desc("function name"));
|
cl::value_desc("function name"));
|
||||||
|
|
||||||
cl::opt<bool> TraceMode("trace", cl::desc("Enable Tracing"));
|
|
||||||
|
|
||||||
cl::opt<bool> ForceInterpreter("force-interpreter",
|
cl::opt<bool> ForceInterpreter("force-interpreter",
|
||||||
cl::desc("Force interpretation: disable JIT"),
|
cl::desc("Force interpretation: disable JIT"),
|
||||||
cl::init(false));
|
cl::init(false));
|
||||||
@ -137,7 +135,7 @@ int main(int argc, char **argv, char * const *envp) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ExecutionEngine *EE =
|
ExecutionEngine *EE =
|
||||||
ExecutionEngine::create(MP, ForceInterpreter, TraceMode);
|
ExecutionEngine::create(MP, ForceInterpreter);
|
||||||
assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
|
assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
|
||||||
|
|
||||||
// Add the module's name to the start of the vector of arguments to main().
|
// Add the module's name to the start of the vector of arguments to main().
|
||||||
|
Loading…
x
Reference in New Issue
Block a user