[cleanup] Re-sort all the includes with utils/sort_includes.py.
authorChandler Carruth <chandlerc@gmail.com>
Tue, 4 Mar 2014 10:07:28 +0000 (10:07 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 4 Mar 2014 10:07:28 +0000 (10:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202811 91177308-0d34-0410-b5e6-96231b3b80d8

37 files changed:
include/llvm/ADT/StringRef.h
include/llvm/Analysis/LazyCallGraph.h
include/llvm/Analysis/RegionInfo.h
include/llvm/CodeGen/MachineDominators.h
include/llvm/IR/Dominators.h
include/llvm/LineEditor/LineEditor.h
lib/Analysis/Analysis.cpp
lib/Analysis/LazyCallGraph.cpp
lib/Analysis/PostDominators.cpp
lib/CodeGen/AsmPrinter/AsmPrinter.cpp
lib/CodeGen/AsmPrinter/DwarfDebug.h
lib/CodeGen/AsmPrinter/DwarfUnit.h
lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h
lib/CodeGen/StackMaps.cpp
lib/CodeGen/TargetLoweringObjectFileImpl.cpp
lib/CodeGen/VirtRegMap.cpp
lib/IR/DebugInfo.cpp
lib/LTO/LTOCodeGenerator.cpp
lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
lib/Target/Mips/Mips16HardFloatInfo.cpp
lib/Target/Mips/Mips16ISelLowering.cpp
lib/Target/TargetLoweringObjectFile.cpp
lib/Target/XCore/XCoreAsmPrinter.cpp
lib/Target/XCore/XCoreFrameLowering.cpp
lib/Transforms/Utils/AddDiscriminators.cpp
tools/lli/ChildTarget/ChildTarget.cpp
tools/lli/Unix/RPCChannel.inc
tools/llvm-nm/llvm-nm.cpp
tools/opt/PassPrinters.cpp
tools/opt/opt.cpp
unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
unittests/Linker/LinkModulesTest.cpp
utils/TableGen/OptParserEmitter.cpp

index a1d10c18d78cafe1217b1c10eef13a66eaa75c76..bbfbf6744a3c48eb77ac84a9b0ca3457a7c01f03 100644 (file)
@@ -10,8 +10,8 @@
 #ifndef LLVM_ADT_STRINGREF_H
 #define LLVM_ADT_STRINGREF_H
 
-#include "llvm/Support/type_traits.h"
 #include "llvm/Support/Allocator.h"
+#include "llvm/Support/type_traits.h"
 #include <algorithm>
 #include <cassert>
 #include <cstring>
index cf686807b8726022b6daf1e9d8c6507c88023ab8..bcd09ba1d7e230be5b1b93fdda1377f3bdabe922 100644 (file)
 
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/PointerUnion.h"
-#include "llvm/ADT/SmallVector.h"
-#include "llvm/ADT/SmallPtrSet.h"
 #include "llvm/ADT/STLExtras.h"
-#include "llvm/IR/Module.h"
-#include "llvm/IR/Function.h"
+#include "llvm/ADT/SmallPtrSet.h"
+#include "llvm/ADT/SmallVector.h"
 #include "llvm/IR/BasicBlock.h"
+#include "llvm/IR/Function.h"
+#include "llvm/IR/Module.h"
 #include "llvm/Support/Allocator.h"
 #include <iterator>
 
index a57b10088e18a800d7931392e9d38674f40a2abb..5f0f4ede0fe2335cfc7f838b36264408b8b7c7bb 100644 (file)
@@ -27,8 +27,8 @@
 #ifndef LLVM_ANALYSIS_REGIONINFO_H
 #define LLVM_ANALYSIS_REGIONINFO_H
 
-#include "llvm/ADT/iterator_range.h"
 #include "llvm/ADT/PointerIntPair.h"
+#include "llvm/ADT/iterator_range.h"
 #include "llvm/Analysis/DominanceFrontier.h"
 #include "llvm/Analysis/PostDominators.h"
 #include "llvm/Support/Allocator.h"
index 608833305f9679531c6867afe96ac332435c4b67..175b45c44214d6dc36d24dea8f291b4bf3d0b564 100644 (file)
@@ -18,8 +18,8 @@
 #include "llvm/CodeGen/MachineBasicBlock.h"
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineFunctionPass.h"
-#include "llvm/Support/GenericDomTreeConstruction.h"
 #include "llvm/Support/GenericDomTree.h"
+#include "llvm/Support/GenericDomTreeConstruction.h"
 
 namespace llvm {
 
index 3592d2dfa753c8838c756dc44443d35d70e50012..a4302f126cc86d211c2c515fc686c9a99e842b03 100644 (file)
@@ -24,8 +24,8 @@
 #include "llvm/IR/Function.h"
 #include "llvm/Pass.h"
 #include "llvm/Support/CFG.h"
-#include "llvm/Support/GenericDomTree.h"
 #include "llvm/Support/Compiler.h"
+#include "llvm/Support/GenericDomTree.h"
 #include "llvm/Support/raw_ostream.h"
 #include <algorithm>
 
index 7ac9b5732354711eb9224d01184a2967963ef9f7..cde57b8a929d58ce73fa11c90a8c6602df1e5fd8 100644 (file)
@@ -10,9 +10,9 @@
 #ifndef LLVM_LINEEDITOR_LINEEDITOR_H
 #define LLVM_LINEEDITOR_LINEEDITOR_H
 
-#include "llvm/ADT/StringRef.h"
 #include "llvm/ADT/Optional.h"
 #include "llvm/ADT/OwningPtr.h"
+#include "llvm/ADT/StringRef.h"
 #include <stdio.h>
 #include <string>
 #include <vector>
index c9ce1643c3d214d7429bf058d00db2f3931d7c8b..c960123d08484c9b3ff8d25f9442c8c6b8617b1c 100644 (file)
@@ -11,9 +11,9 @@
 #include "llvm-c/Initialization.h"
 #include "llvm/IR/Module.h"
 #include "llvm/IR/Verifier.h"
-#include "llvm/Support/raw_ostream.h"
 #include "llvm/InitializePasses.h"
 #include "llvm/PassRegistry.h"
+#include "llvm/Support/raw_ostream.h"
 #include <cstring>
 
 using namespace llvm;
index 74eef7b68f6b9b414e30554115324b50d12408e7..d793aa38572d2ae529ab142917fe556a05ab6c2d 100644 (file)
@@ -11,9 +11,9 @@
 #include "llvm/ADT/SCCIterator.h"
 #include "llvm/IR/Instructions.h"
 #include "llvm/IR/PassManager.h"
+#include "llvm/InstVisitor.h"
 #include "llvm/Support/CallSite.h"
 #include "llvm/Support/raw_ostream.h"
-#include "llvm/InstVisitor.h"
 
 using namespace llvm;
 
index 7da8f46ea10e98c50d82787f896037d046cf9a2b..28969878a13bc2efc14c7f15b137c61390606350 100644 (file)
 #include "llvm/Analysis/PostDominators.h"
 #include "llvm/ADT/DepthFirstIterator.h"
 #include "llvm/ADT/SetOperations.h"
-#include "llvm/Support/GenericDomTreeConstruction.h"
 #include "llvm/IR/Instructions.h"
 #include "llvm/Support/CFG.h"
 #include "llvm/Support/Debug.h"
+#include "llvm/Support/GenericDomTreeConstruction.h"
 using namespace llvm;
 
 //===----------------------------------------------------------------------===//
index d59713c142eba2f84cc1dcee8bb9cfe4453bb033..4d35e863106376a18cd2e1428d059f3b614ad9d7 100644 (file)
@@ -15,6 +15,7 @@
 #include "llvm/CodeGen/AsmPrinter.h"
 #include "DwarfDebug.h"
 #include "DwarfException.h"
+#include "WinCodeViewLineTables.h"
 #include "llvm/ADT/SmallBitVector.h"
 #include "llvm/ADT/SmallString.h"
 #include "llvm/ADT/Statistic.h"
@@ -51,7 +52,6 @@
 #include "llvm/Target/TargetRegisterInfo.h"
 #include "llvm/Target/TargetSubtargetInfo.h"
 #include "llvm/Transforms/Utils/GlobalStatus.h"
-#include "WinCodeViewLineTables.h"
 using namespace llvm;
 
 static const char *const DWARFGroupName = "DWARF Emission";
index def43b9e094eccd10aac51e77c41329708d264fe..6fceb05be525f2b5e8f962cf94e3381c0d473d63 100644 (file)
 #include "DIE.h"
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/FoldingSet.h"
+#include "llvm/ADT/MapVector.h"
 #include "llvm/ADT/SetVector.h"
 #include "llvm/ADT/SmallPtrSet.h"
 #include "llvm/ADT/StringMap.h"
-#include "llvm/ADT/MapVector.h"
 #include "llvm/CodeGen/AsmPrinter.h"
 #include "llvm/CodeGen/LexicalScopes.h"
 #include "llvm/DebugInfo.h"
index c87f2bd15d419180656809e95f81335430513bec..82d3af2a84cfc9a0fc6686d07e3eac71f102aab5 100644 (file)
@@ -20,8 +20,8 @@
 #include "llvm/ADT/Optional.h"
 #include "llvm/ADT/OwningPtr.h"
 #include "llvm/ADT/StringMap.h"
-#include "llvm/DebugInfo.h"
 #include "llvm/DIBuilder.h"
+#include "llvm/DebugInfo.h"
 #include "llvm/MC/MCExpr.h"
 #include "llvm/MC/MCSection.h"
 
index f61ecc2f64cc18095c5b39e05a78d875325cdd37..510ad59f5c9271c3d7470e26b2c0604163b91df4 100644 (file)
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/StringMap.h"
 #include "llvm/ADT/StringRef.h"
-#include "llvm/DebugInfo.h"
 #include "llvm/CodeGen/AsmPrinter.h"
+#include "llvm/CodeGen/LexicalScopes.h"
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineModuleInfo.h"
-#include "llvm/CodeGen/LexicalScopes.h"
+#include "llvm/DebugInfo.h"
 #include "llvm/MC/MCStreamer.h"
 #include "llvm/Support/DebugLoc.h"
 #include "llvm/Target/TargetLoweringObjectFile.h"
index be3253c6f82944a7c2e5ba2ad8d2f78cb6975e9d..f347e96971817ff5122540e8d481116bf0e6614f 100644 (file)
@@ -11,8 +11,8 @@
 
 #include "llvm/CodeGen/StackMaps.h"
 #include "llvm/CodeGen/AsmPrinter.h"
-#include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineFrameInfo.h"
+#include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineInstr.h"
 #include "llvm/IR/DataLayout.h"
 #include "llvm/MC/MCContext.h"
index 0f3fb4924b430c93b4f8fb3c379f32ea2d7ac7ac..a4eb0ca7ffcf636a708324aca374083ace44d02d 100644 (file)
@@ -35,8 +35,8 @@
 #include "llvm/Support/ELF.h"
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/raw_ostream.h"
-#include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetLowering.h"
+#include "llvm/Target/TargetMachine.h"
 using namespace llvm;
 using namespace dwarf;
 
index 29ed30cb51a798c8023541060dc4ff501dacda58..7d6481a96c0406f4dd383211b9ee93f82069b586 100644 (file)
@@ -20,8 +20,8 @@
 #include "llvm/CodeGen/VirtRegMap.h"
 #include "LiveDebugVariables.h"
 #include "llvm/ADT/STLExtras.h"
-#include "llvm/ADT/Statistic.h"
 #include "llvm/ADT/SparseSet.h"
+#include "llvm/ADT/Statistic.h"
 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
 #include "llvm/CodeGen/LiveStackAnalysis.h"
 #include "llvm/CodeGen/MachineFrameInfo.h"
index f5884a4a90adc21676d999d89eae9dcfac987d53..df059c4d7fc58eb0d83d2c488c58aa885099471d 100644 (file)
@@ -13,6 +13,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/DebugInfo.h"
+#include "LLVMContextImpl.h"
 #include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/SmallPtrSet.h"
 #include "llvm/ADT/SmallString.h"
@@ -22,7 +23,6 @@
 #include "llvm/IR/Instructions.h"
 #include "llvm/IR/IntrinsicInst.h"
 #include "llvm/IR/Intrinsics.h"
-#include "LLVMContextImpl.h"
 #include "llvm/IR/Module.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/Dwarf.h"
index 777db9c9128db2057a6443febe4856266bb3c854..87ea01f92619e8a33eda7518c59ade79b8d2c557 100644 (file)
 #include "llvm/Support/FormattedStream.h"
 #include "llvm/Support/Host.h"
 #include "llvm/Support/MemoryBuffer.h"
-#include "llvm/Support/raw_ostream.h"
 #include "llvm/Support/Signals.h"
 #include "llvm/Support/TargetRegistry.h"
 #include "llvm/Support/TargetSelect.h"
 #include "llvm/Support/ToolOutputFile.h"
+#include "llvm/Support/raw_ostream.h"
 #include "llvm/Support/system_error.h"
 #include "llvm/Target/TargetLibraryInfo.h"
 #include "llvm/Target/TargetLowering.h"
index ce8b67f1eec28ed17e235bc9a9ab44894cf3b57d..fdc0ed7d67f154230ef1858e7eb78b8474dc227a 100644 (file)
@@ -11,9 +11,9 @@
 //
 //===----------------------------------------------------------------------===//
 #include "llvm/ADT/MapVector.h"
-#include "llvm/MC/MCStreamer.h"
-#include "llvm/MC/MCExpr.h"
 #include "llvm/MC/MCContext.h"
+#include "llvm/MC/MCExpr.h"
+#include "llvm/MC/MCStreamer.h"
 
 using namespace llvm;
 
index de724d33cffbdf5d51b6c55e0189fb44404ac5ad..c8f08f1fea278aad3f215302592f97b58b825f5b 100644 (file)
@@ -13,8 +13,8 @@
 
 #define DEBUG_TYPE "asm-printer"
 #include "MipsInstPrinter.h"
-#include "MipsInstrInfo.h"
 #include "MCTargetDesc/MipsMCExpr.h"
+#include "MipsInstrInfo.h"
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/MC/MCExpr.h"
 #include "llvm/MC/MCInst.h"
index 3b2ced624a21bc2160b3570f6bd662f61e6d0cdb..e470fea16530333406b371c2728fe8f9fd976e7e 100644 (file)
@@ -9,9 +9,9 @@
 
 #define DEBUG_TYPE "mipsmcexpr"
 #include "MipsMCExpr.h"
+#include "llvm/MC/MCAsmInfo.h"
 #include "llvm/MC/MCAssembler.h"
 #include "llvm/MC/MCContext.h"
-#include "llvm/MC/MCAsmInfo.h"
 
 using namespace llvm;
 
index 6c4ce482a5d6acbeab04604261364027d2dabf87..0ec17554c0bc1921a2601d0557fabb123737ac6e 100644 (file)
@@ -10,9 +10,9 @@
 #ifndef MIPSMCEXPR_H
 #define MIPSMCEXPR_H
 
+#include "llvm/MC/MCAsmLayout.h"
 #include "llvm/MC/MCExpr.h"
 #include "llvm/MC/MCValue.h"
-#include "llvm/MC/MCAsmLayout.h"
 
 namespace llvm {
 
index a46191f12cfe0b84be0af8c03f4674f4573640ed..ef6d8d40e3a5d0e451f4f229bd5da7107e8aa6c6 100644 (file)
 //===----------------------------------------------------------------------===//
 
 #include "InstPrinter/MipsInstPrinter.h"
+#include "MipsMCTargetDesc.h"
 #include "MipsTargetObjectFile.h"
 #include "MipsTargetStreamer.h"
-#include "MipsMCTargetDesc.h"
 #include "llvm/MC/MCContext.h"
 #include "llvm/MC/MCELF.h"
 #include "llvm/MC/MCSectionELF.h"
-#include "llvm/MC/MCSymbol.h"
 #include "llvm/MC/MCSubtargetInfo.h"
+#include "llvm/MC/MCSymbol.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/ELF.h"
 #include "llvm/Support/ErrorHandling.h"
index 294f6c92fc295c81b7e6f89e3bc24cc39f0c3545..d8b685e0dca560a4c4bddf7cb380f61b712c7194 100644 (file)
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include <string.h>
 #include "Mips16HardFloatInfo.h"
+#include <string.h>
 
 namespace llvm {
 
index bb280b720ef662ea1b5ca077708200fba85ee59c..5c6f3028de4db7de89932ff76240f3aba8a5fa93 100644 (file)
@@ -11,7 +11,6 @@
 //
 //===----------------------------------------------------------------------===//
 #define DEBUG_TYPE "mips-lower"
-#include <string>
 #include "Mips16ISelLowering.h"
 #include "MCTargetDesc/MipsBaseInfo.h"
 #include "MipsRegisterInfo.h"
@@ -20,6 +19,7 @@
 #include "llvm/CodeGen/MachineInstrBuilder.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Target/TargetInstrInfo.h"
+#include <string>
 
 using namespace llvm;
 
index dea52474345c583074be277a2a82f2fcd81706db..50b1e31c5f50194a3009048fdca74ca7a646913a 100644 (file)
@@ -27,8 +27,8 @@
 #include "llvm/Support/Dwarf.h"
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/raw_ostream.h"
-#include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetLowering.h"
+#include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetOptions.h"
 using namespace llvm;
 
index 0a1ecd5578074e50d35b30125707a1396a700300..3ec9d0f9e2264042d0476ce606c2f92ab00a896b 100644 (file)
 
 #define DEBUG_TYPE "asm-printer"
 #include "XCore.h"
-#include "XCoreTargetStreamer.h"
 #include "InstPrinter/XCoreInstPrinter.h"
 #include "XCoreInstrInfo.h"
 #include "XCoreMCInstLower.h"
 #include "XCoreSubtarget.h"
 #include "XCoreTargetMachine.h"
+#include "XCoreTargetStreamer.h"
 #include "llvm/ADT/SmallString.h"
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/CodeGen/AsmPrinter.h"
index 4a0d8a4b50a2bd0edbb058da3509ad5fd3b3d868..c2d358835c0c3de6e258ea1fe18fbe4e0269a72f 100644 (file)
@@ -27,7 +27,6 @@
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Target/TargetLowering.h"
 #include "llvm/Target/TargetOptions.h"
-
 #include <algorithm>    // std::sort
 
 using namespace llvm;
index 50ed5a19172d2fb59c8e729731c5cf12b2ff6bde..ac3e93c0cd4396fc3a7ddf9c505f664592177575 100644 (file)
 #define DEBUG_TYPE "add-discriminators"
 
 #include "llvm/Transforms/Scalar.h"
-#include "llvm/DebugInfo.h"
 #include "llvm/DIBuilder.h"
+#include "llvm/DebugInfo.h"
 #include "llvm/IR/BasicBlock.h"
+#include "llvm/IR/Constants.h"
 #include "llvm/IR/Instructions.h"
 #include "llvm/IR/LLVMContext.h"
-#include "llvm/IR/Constants.h"
 #include "llvm/IR/Module.h"
 #include "llvm/Pass.h"
 #include "llvm/Support/CommandLine.h"
index 4603496c982b9c8c192da22682b12352547b2f5f..0d71b17c63dd7499ce86e1bf4a6fff7f32592442 100644 (file)
@@ -1,8 +1,8 @@
 #include "llvm/Config/config.h"
-#include "llvm/Support/Memory.h"
 #include "../RPCChannel.h"
 #include "../RemoteTarget.h"
 #include "../RemoteTargetMessage.h"
+#include "llvm/Support/Memory.h"
 #include <assert.h>
 #include <map>
 #include <stdint.h>
index 2a5d47650ffe71dca1556302c95ede8e0518089c..4d245d66c121863333b921259badd4086c8279dc 100644 (file)
@@ -14,7 +14,6 @@
 
 #include "llvm/Support/Errno.h"
 #include "llvm/Support/raw_ostream.h"
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <sys/wait.h>
index ffdc7737803c2c1da475fc6a7a552cceb530035d..35b2276048a4d8845d9d2c3ec4097cd226f2f1b9 100644 (file)
@@ -22,8 +22,8 @@
 #include "llvm/IR/LLVMContext.h"
 #include "llvm/Object/Archive.h"
 #include "llvm/Object/COFF.h"
-#include "llvm/Object/IRObjectFile.h"
 #include "llvm/Object/ELFObjectFile.h"
+#include "llvm/Object/IRObjectFile.h"
 #include "llvm/Object/MachO.h"
 #include "llvm/Object/MachOUniversal.h"
 #include "llvm/Object/ObjectFile.h"
index c91d6c837cdd3b1a1af563f98f2c6349356c0602..b809d1d4053d6641c79fa99cc02b82b9ff310911 100644 (file)
@@ -15,8 +15,8 @@
 #include "llvm/Analysis/CallGraphSCCPass.h"
 #include "llvm/Analysis/LoopPass.h"
 #include "llvm/Analysis/RegionPass.h"
-#include "llvm/Pass.h"
 #include "llvm/IR/Function.h"
+#include "llvm/Pass.h"
 #include <string>
 
 using namespace llvm;
index 169e648e2ebca8e6679226901c3dd0b3b84e5ce1..e32ec9633695fcbe9b0be7fd6a710b4ea6618774 100644 (file)
 #include "llvm/Analysis/RegionPass.h"
 #include "llvm/Bitcode/BitcodeWriterPass.h"
 #include "llvm/CodeGen/CommandFlags.h"
-#include "llvm/InitializePasses.h"
 #include "llvm/IR/DataLayout.h"
 #include "llvm/IR/IRPrintingPasses.h"
 #include "llvm/IR/LLVMContext.h"
 #include "llvm/IR/Module.h"
 #include "llvm/IR/Verifier.h"
 #include "llvm/IRReader/IRReader.h"
+#include "llvm/InitializePasses.h"
 #include "llvm/LinkAllIR.h"
 #include "llvm/LinkAllPasses.h"
 #include "llvm/MC/SubtargetFeature.h"
index 02bb092990ebcd53171f1912072695c511b05fd4..092213277d1cea46fc10b2102394024922b7bff0 100644 (file)
 #include "llvm-c/Core.h"
 #include "llvm-c/ExecutionEngine.h"
 #include "llvm-c/Target.h"
-#include "llvm-c/Transforms/Scalar.h"
 #include "llvm-c/Transforms/PassManagerBuilder.h"
+#include "llvm-c/Transforms/Scalar.h"
 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
+#include "llvm/Support/Debug.h"
 #include "llvm/Support/Host.h"
 #include "gtest/gtest.h"
-#include "llvm/Support/Debug.h"
 
 using namespace llvm;
 
index c5942a1268195bd4ac34a1d23f539e6cfdfdb98a..06c00a0504043e4a57de8af9ca0614891a7c8d7f 100644 (file)
@@ -8,10 +8,10 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Linker.h"
-#include "llvm/IR/IRBuilder.h"
 #include "llvm/IR/BasicBlock.h"
 #include "llvm/IR/DataLayout.h"
 #include "llvm/IR/Function.h"
+#include "llvm/IR/IRBuilder.h"
 #include "llvm/IR/Module.h"
 #include "gtest/gtest.h"
 
index 9c4daaf7747dbed13c427dbfec7a1c46d767e778..c5fd7eecbfefdc5ff53efb4e37bced51fcd5d922 100644 (file)
@@ -13,8 +13,8 @@
 #include "llvm/ADT/Twine.h"
 #include "llvm/TableGen/Record.h"
 #include "llvm/TableGen/TableGenBackend.h"
-#include <cstring>
 #include <cctype>
+#include <cstring>
 #include <map>
 
 using namespace llvm;