summaryrefslogtreecommitdiff
path: root/tools/bugpoint/OptimizerDriver.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-08-07 21:19:30 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-08-07 21:19:30 +0000
commite49603d79d220a795bd50684c8b1f503ee40f97f (patch)
treee05e639bcafbbb0e0de74865c83c1c65fc060cd3 /tools/bugpoint/OptimizerDriver.cpp
parent11c6592daf6512bcafe4338b586acf4c539502ca (diff)
downloadllvm-e49603d79d220a795bd50684c8b1f503ee40f97f.tar.gz
llvm-e49603d79d220a795bd50684c8b1f503ee40f97f.tar.bz2
llvm-e49603d79d220a795bd50684c8b1f503ee40f97f.tar.xz
Re-grouped and alphabetized headers for easier reading and cleaner style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7689 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/OptimizerDriver.cpp')
-rw-r--r--tools/bugpoint/OptimizerDriver.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/bugpoint/OptimizerDriver.cpp b/tools/bugpoint/OptimizerDriver.cpp
index 3a29d5d97d..bc3489fd1d 100644
--- a/tools/bugpoint/OptimizerDriver.cpp
+++ b/tools/bugpoint/OptimizerDriver.cpp
@@ -9,16 +9,16 @@
//===----------------------------------------------------------------------===//
#include "BugDriver.h"
-#include "Support/SystemUtils.h"
#include "llvm/PassManager.h"
#include "llvm/Analysis/Verifier.h"
#include "llvm/Bytecode/WriteBytecodePass.h"
#include "llvm/Target/TargetData.h"
+#include "Support/SystemUtils.h"
+#include <fstream>
+#include <stdlib.h>
+#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <fstream>
/// writeProgramToFile - This writes the current "Program" to the named bytecode
/// file. If an error occurs, true is returned.