summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ExecutionDriver.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-18 20:30:48 +0000
committerChris Lattner <sabre@nondot.org>2003-10-18 20:30:48 +0000
commit367e1ee5bebc3542b55df61cd280bd6166057e51 (patch)
tree41fbccce0b097854cc5c7c6b5ce11e3f5355dcc0 /tools/bugpoint/ExecutionDriver.cpp
parent25d66473c620b6b01e301b9cfabdbedace96608e (diff)
downloadllvm-367e1ee5bebc3542b55df61cd280bd6166057e51.tar.gz
llvm-367e1ee5bebc3542b55df61cd280bd6166057e51.tar.bz2
llvm-367e1ee5bebc3542b55df61cd280bd6166057e51.tar.xz
Change run-lli -> run-int
Many people associate lli with the jit, so we don't want to suprise them git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9238 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index a6f106a5d3..09983584a5 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -33,7 +33,7 @@ namespace {
cl::opt<OutputType>
InterpreterSel(cl::desc("Specify how LLVM code should be executed:"),
- cl::values(clEnumValN(RunLLI, "run-lli", "Execute with LLI"),
+ cl::values(clEnumValN(RunLLI, "run-int", "Execute with the interpreter"),
clEnumValN(RunJIT, "run-jit", "Execute with JIT"),
clEnumValN(RunLLC, "run-llc", "Compile with LLC"),
clEnumValN(RunCBE, "run-cbe", "Compile with CBE"),