1
0
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:
Chris Lattner 2003-10-18 20:18:20 +00:00
parent 620cb7e35a
commit aea6238a66

View File

@ -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"),