mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Default to using the CBE instead of the Interpreter if no -run-* option is specified
llvm-svn: 9237
This commit is contained in:
parent
620cb7e35a
commit
aea6238a66
@ -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