[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Oct 18 15:31:01 PDT 2003


Changes in directory llvm/tools/bugpoint:

ExecutionDriver.cpp updated: 1.26 -> 1.27

---
Log message:

Change run-lli -> run-int
Many people associate lli with the jit, so we don't want to suprise them



---
Diffs of the changes:  (+1 -1)

Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.26 llvm/tools/bugpoint/ExecutionDriver.cpp:1.27
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.26	Sat Oct 18 15:18:20 2003
+++ llvm/tools/bugpoint/ExecutionDriver.cpp	Sat Oct 18 15:30:48 2003
@@ -33,7 +33,7 @@
 
   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"),





More information about the llvm-commits mailing list