diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-18 20:18:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 20:18:20 +0000 |
commit | 16d36a18758d658683678887f3c4b7873b64efc5 (patch) | |
tree | e8bdd36823937165fdc241fb237459f6a6e79f8c /llvm/tools/bugpoint/ExecutionDriver.cpp | |
parent | eb6cfaef4ba914239f9635b10e274b85ad71bb70 (diff) | |
download | bcm5719-llvm-16d36a18758d658683678887f3c4b7873b64efc5.tar.gz bcm5719-llvm-16d36a18758d658683678887f3c4b7873b64efc5.zip |
Default to using the CBE instead of the Interpreter if no -run-* option is specified
llvm-svn: 9237
Diffstat (limited to 'llvm/tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r-- | llvm/tools/bugpoint/ExecutionDriver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp index e0e0b70c572..a6f106a5d3a 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/tools/bugpoint/ExecutionDriver.cpp @@ -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"), |