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 | 25d66473c620b6b01e301b9cfabdbedace96608e (patch) | |
| tree | 2067e057d2e21bcacadf50c9091dd44c916b3caa | |
| parent | b91d9712e1c1cc6d64cafcd9e1950352e1c8b046 (diff) | |
| download | external_llvm-25d66473c620b6b01e301b9cfabdbedace96608e.zip external_llvm-25d66473c620b6b01e301b9cfabdbedace96608e.tar.gz external_llvm-25d66473c620b6b01e301b9cfabdbedace96608e.tar.bz2 | |
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
| -rw-r--r-- | tools/bugpoint/ExecutionDriver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index e0e0b70..a6f106a 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<std::string> InputFile("input", cl::init("/dev/null"), |
