[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Oct 18 15:19:01 PDT 2003
Changes in directory llvm/tools/bugpoint:
ExecutionDriver.cpp updated: 1.25 -> 1.26
---
Log message:
Default to using the CBE instead of the Interpreter if no -run-* option is specified
---
Diffs of the changes: (+2 -1)
Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.25 llvm/tools/bugpoint/ExecutionDriver.cpp:1.26
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.25 Tue Oct 14 17:24:31 2003
+++ llvm/tools/bugpoint/ExecutionDriver.cpp Sat Oct 18 15:18:20 2003
@@ -37,7 +37,8 @@
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"),
More information about the llvm-commits
mailing list