aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/RegionInfo.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-08-21 21:14:19 +0000
committerBill Wendling <isanbard@gmail.com>2013-08-21 21:14:19 +0000
commitdd778b230e60092be1553461f68fa8ec37c5fdc0 (patch)
treee0ebb99367860de5abff6da229520e6dd7c8c478 /lib/Analysis/RegionInfo.cpp
parent4a4844a022bee4ff904d4f32bd45f7fdaabb54b7 (diff)
downloadexternal_llvm-dd778b230e60092be1553461f68fa8ec37c5fdc0.zip
external_llvm-dd778b230e60092be1553461f68fa8ec37c5fdc0.tar.gz
external_llvm-dd778b230e60092be1553461f68fa8ec37c5fdc0.tar.bz2
Reorder headers according to lint.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionInfo.cpp')
-rw-r--r--lib/Analysis/RegionInfo.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Analysis/RegionInfo.cpp b/lib/Analysis/RegionInfo.cpp
index 8577025..5635688 100644
--- a/lib/Analysis/RegionInfo.cpp
+++ b/lib/Analysis/RegionInfo.cpp
@@ -9,6 +9,7 @@
// Detects single entry single exit regions in the control flow graph.
//===----------------------------------------------------------------------===//
+#define DEBUG_TYPE "region"
#include "llvm/Analysis/RegionInfo.h"
#include "llvm/ADT/PostOrderIterator.h"
#include "llvm/ADT/Statistic.h"
@@ -17,12 +18,9 @@
#include "llvm/Assembly/Writer.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ErrorHandling.h"
-
-#define DEBUG_TYPE "region"
#include "llvm/Support/Debug.h"
-
-#include <set>
#include <algorithm>
+#include <set>
using namespace llvm;