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

Misha Brukman brukman at cs.uiuc.edu
Sun Apr 18 22:13:01 PDT 2004


Changes in directory llvm/tools/bugpoint:

ExecutionDriver.cpp updated: 1.39 -> 1.40

---
Log message:

* Reorder #includes
* Wrap a long line


---
Diffs of the changes:  (+3 -2)

Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.39 llvm/tools/bugpoint/ExecutionDriver.cpp:1.40
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.39	Thu Apr  1 23:33:06 2004
+++ llvm/tools/bugpoint/ExecutionDriver.cpp	Sun Apr 18 22:12:35 2004
@@ -22,11 +22,11 @@
 */
 
 #include "BugDriver.h"
+#include "llvm/Support/ToolRunner.h"
 #include "Support/CommandLine.h"
 #include "Support/Debug.h"
 #include "Support/FileUtilities.h"
 #include "Support/SystemUtils.h"
-#include "llvm/Support/ToolRunner.h"
 #include <fstream>
 #include <iostream>
 using namespace llvm;
@@ -42,7 +42,8 @@
   cl::opt<OutputType>
   InterpreterSel(cl::desc("Specify how LLVM code should be executed:"),
                  cl::values(clEnumValN(AutoPick, "auto", "Use best guess"),
-                            clEnumValN(RunLLI, "run-int", "Execute with the interpreter"),
+                            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