From eba5545346c5d7a08f376e673ec97c85f3b43e1f Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 19 Apr 2004 03:12:35 +0000 Subject: [PATCH] * Reorder #includes * Wrap a long line llvm-svn: 13061 --- tools/bugpoint/ExecutionDriver.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index 969eaabaf6e..4d5c78368f7 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 #include using namespace llvm; @@ -42,7 +42,8 @@ namespace { cl::opt 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"),