summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ExecutionDriver.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-04-19 03:12:35 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-04-19 03:12:35 +0000
commitb687d82b029ba448b978e2c9ed424ee5d1f9f093 (patch)
treed52359119e10339509150c166ce87d9f65212d3e /tools/bugpoint/ExecutionDriver.cpp
parente8cad786981c1278a106c96180d245a44fddd753 (diff)
downloadllvm-b687d82b029ba448b978e2c9ed424ee5d1f9f093.tar.gz
llvm-b687d82b029ba448b978e2c9ed424ee5d1f9f093.tar.bz2
llvm-b687d82b029ba448b978e2c9ed424ee5d1f9f093.tar.xz
* Reorder #includes
* Wrap a long line git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index 969eaabaf6..4d5c78368f 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -22,11 +22,11 @@ BUGPOINT NOTES:
*/
#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 @@ namespace {
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"),