summaryrefslogtreecommitdiff
path: root/tools/opt
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 10:07:28 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 10:07:28 +0000
commit1decd56b8dec415b9d2270d636226b9fdb0b9c25 (patch)
treeb75f2314a1630f5107e2b3e087c22978f6f98235 /tools/opt
parentefba32f21b84dd3e6160dabf5544b877aa614205 (diff)
downloadllvm-1decd56b8dec415b9d2270d636226b9fdb0b9c25.tar.gz
llvm-1decd56b8dec415b9d2270d636226b9fdb0b9c25.tar.bz2
llvm-1decd56b8dec415b9d2270d636226b9fdb0b9c25.tar.xz
[cleanup] Re-sort all the includes with utils/sort_includes.py.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt')
-rw-r--r--tools/opt/PassPrinters.cpp2
-rw-r--r--tools/opt/opt.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/opt/PassPrinters.cpp b/tools/opt/PassPrinters.cpp
index c91d6c837c..b809d1d405 100644
--- a/tools/opt/PassPrinters.cpp
+++ b/tools/opt/PassPrinters.cpp
@@ -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;
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index 169e648e2e..e32ec96336 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -22,13 +22,13 @@
#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"