summaryrefslogtreecommitdiffstats
path: root/llvm
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
commit8a32c6d91b859c1d2a7f72a68db18d550b5340b6 (patch)
tree96d4ec909ec5f9df93e5c77cee7c548142b76f30 /llvm
parent4825e215c062aeae979737db324c118714cbaafe (diff)
downloadbcm5719-llvm-8a32c6d91b859c1d2a7f72a68db18d550b5340b6.tar.gz
bcm5719-llvm-8a32c6d91b859c1d2a7f72a68db18d550b5340b6.zip
* Reorder #includes
* Wrap a long line llvm-svn: 13061
Diffstat (limited to 'llvm')
-rw-r--r--llvm/tools/bugpoint/ExecutionDriver.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp
index 969eaabaf6e..4d5c78368f7 100644
--- a/llvm/tools/bugpoint/ExecutionDriver.cpp
+++ b/llvm/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"),
OpenPOWER on IntegriCloud