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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9238 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/ExecutionDriver.cpp

index a6f106a5d3a8aa08c757e46310139859993acc82..09983584a51256d4d3aec5d7a5e84d07bd2115ad 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"),