OSDN Git Service

Re-grouped and alphabetized headers for easier reading and cleaner style.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 7 Aug 2003 21:19:30 +0000 (21:19 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 7 Aug 2003 21:19:30 +0000 (21:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7689 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/BugDriver.cpp
tools/bugpoint/CodeGeneratorBug.cpp
tools/bugpoint/CrashDebugger.cpp
tools/bugpoint/ExecutionDriver.cpp
tools/bugpoint/ExtractFunction.cpp
tools/bugpoint/Miscompilation.cpp
tools/bugpoint/OptimizerDriver.cpp
tools/bugpoint/TestPasses.cpp
tools/bugpoint/bugpoint.cpp

index 9b9c2ec..4d1ce46 100644 (file)
@@ -7,13 +7,13 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
-#include "Support/SystemUtils.h"
 #include "llvm/Module.h"
-#include "llvm/Bytecode/Reader.h"
+#include "llvm/Pass.h"
 #include "llvm/Assembly/Parser.h"
+#include "llvm/Bytecode/Reader.h"
 #include "llvm/Transforms/Utils/Linker.h"
-#include "llvm/Pass.h"
 #include "Support/CommandLine.h"
+#include "Support/SystemUtils.h"
 #include <memory>
 
 // Anonymous namespace to define command line options for debugging.
index da990c7..c11f123 100644 (file)
@@ -5,7 +5,6 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
-#include "Support/SystemUtils.h"
 #include "ListReducer.h"
 #include "llvm/Constants.h"
 #include "llvm/DerivedTypes.h"
@@ -23,6 +22,7 @@
 #include "Support/CommandLine.h"
 #include "Support/Debug.h"
 #include "Support/StringExtras.h"
+#include "Support/SystemUtils.h"
 #include <algorithm>
 #include <set>
 
index 048e54a..cd4ed1e 100644 (file)
@@ -5,20 +5,20 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
-#include "Support/SystemUtils.h"
 #include "ListReducer.h"
-#include "llvm/Module.h"
-#include "llvm/PassManager.h"
-#include "llvm/Pass.h"
 #include "llvm/Constant.h"
 #include "llvm/iTerminators.h"
-#include "llvm/Type.h"
+#include "llvm/Module.h"
+#include "llvm/Pass.h"
+#include "llvm/PassManager.h"
 #include "llvm/SymbolTable.h"
-#include "llvm/Support/CFG.h"
+#include "llvm/Type.h"
 #include "llvm/Analysis/Verifier.h"
+#include "llvm/Bytecode/Writer.h"
+#include "llvm/Support/CFG.h"
 #include "llvm/Transforms/Scalar.h"
 #include "llvm/Transforms/Utils/Cloning.h"
-#include "llvm/Bytecode/Writer.h"
+#include "Support/SystemUtils.h"
 #include <fstream>
 #include <set>
 
index 90f705d..6a62233 100644 (file)
@@ -15,10 +15,10 @@ BUGPOINT NOTES:
 */
 
 #include "BugDriver.h"
-#include "Support/SystemUtils.h"
 #include "Support/CommandLine.h"
 #include "Support/Debug.h"
 #include "Support/FileUtilities.h"
+#include "Support/SystemUtils.h"
 #include <fstream>
 #include <iostream>
 
index 9cb922a..2148338 100644 (file)
@@ -6,14 +6,14 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
+#include "llvm/Constant.h"
 #include "llvm/Module.h"
 #include "llvm/PassManager.h"
+#include "llvm/Type.h"
+#include "llvm/Analysis/Verifier.h"
 #include "llvm/Transforms/IPO.h"
 #include "llvm/Transforms/Scalar.h"
 #include "llvm/Transforms/Utils/Cloning.h"
-#include "llvm/Analysis/Verifier.h"
-#include "llvm/Type.h"
-#include "llvm/Constant.h"
 #include "Support/CommandLine.h"
 
 bool DisableSimplifyCFG = false;
index d60ce7e..bd500c5 100644 (file)
@@ -5,12 +5,12 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
-#include "Support/SystemUtils.h"
 #include "ListReducer.h"
-#include "llvm/Pass.h"
 #include "llvm/Module.h"
+#include "llvm/Pass.h"
 #include "llvm/Transforms/Utils/Cloning.h"
 #include "llvm/Transforms/Utils/Linker.h"
+#include "Support/SystemUtils.h"
 
 class ReduceMiscompilingPasses : public ListReducer<const PassInfo*> {
   BugDriver &BD;
index 3a29d5d..bc3489f 100644 (file)
@@ -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.
index b284b9d..32bca95 100644 (file)
@@ -5,11 +5,11 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/Pass.h"
+#include "llvm/BasicBlock.h"
+#include "llvm/Constant.h"
 #include "llvm/iOther.h"
+#include "llvm/Pass.h"
 #include "llvm/Support/InstVisitor.h"
-#include "llvm/Constant.h"
-#include "llvm/BasicBlock.h"
 
 namespace {
   /// CrashOnCalls - This pass is used to test bugpoint.  It intentionally
index ea44088..4a6ebaf 100644 (file)
@@ -7,8 +7,8 @@
 //===----------------------------------------------------------------------===//
 
 #include "BugDriver.h"
-#include "Support/CommandLine.h"
 #include "llvm/Support/PassNameParser.h"
+#include "Support/CommandLine.h"
 
 static cl::list<std::string>
 InputFilenames(cl::Positional, cl::OneOrMore,