mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-03 09:21:02 +00:00
Default to using the CBE instead of the Interpreter if no -run-* option is specified
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9237 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b91d9712e1
commit
25d66473c6
@ -37,7 +37,8 @@ namespace {
|
||||
clEnumValN(RunJIT, "run-jit", "Execute with JIT"),
|
||||
clEnumValN(RunLLC, "run-llc", "Compile with LLC"),
|
||||
clEnumValN(RunCBE, "run-cbe", "Compile with CBE"),
|
||||
0));
|
||||
0),
|
||||
cl::init(RunCBE));
|
||||
|
||||
cl::opt<std::string>
|
||||
InputFile("input", cl::init("/dev/null"),
|
||||
|
Loading…
Reference in New Issue
Block a user