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:
Chris Lattner 2003-10-18 20:18:20 +00:00
parent b91d9712e1
commit 25d66473c6

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