From: Chris Lattner Date: Sat, 18 Oct 2003 20:18:20 +0000 (+0000) Subject: Default to using the CBE instead of the Interpreter if no -run-* option is specified X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=25d66473c620b6b01e301b9cfabdbedace96608e;p=oota-llvm.git 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 --- diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index e0e0b70c572..a6f106a5d3a 100644 --- a/tools/bugpoint/ExecutionDriver.cpp +++ b/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 InputFile("input", cl::init("/dev/null"),