Change run-lli -> run-int
authorChris Lattner <sabre@nondot.org>
Sat, 18 Oct 2003 20:30:48 +0000 (20:30 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 18 Oct 2003 20:30:48 +0000 (20:30 +0000)
Many people associate lli with the jit, so we don't want to suprise them

llvm-svn: 9238

llvm/tools/bugpoint/ExecutionDriver.cpp

index a6f106a..0998358 100644 (file)
@@ -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"),