diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-04-19 03:12:35 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-04-19 03:12:35 +0000 |
commit | 8a32c6d91b859c1d2a7f72a68db18d550b5340b6 (patch) | |
tree | 96d4ec909ec5f9df93e5c77cee7c548142b76f30 /llvm | |
parent | 4825e215c062aeae979737db324c118714cbaafe (diff) | |
download | bcm5719-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.cpp | 5 |
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"), |