summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AggressiveAntiDepBreaker.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-12-04 07:12:27 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-12-04 07:12:27 +0000
commita1514e24cc24b050f53a12650e047799358833a1 (patch)
tree44eeca62c167ea741c93dfdc7ed31b3094d20c32 /lib/CodeGen/AggressiveAntiDepBreaker.h
parente6f2df961065e3b723ef0fc78441f07c5577acd2 (diff)
downloadllvm-a1514e24cc24b050f53a12650e047799358833a1.tar.gz
llvm-a1514e24cc24b050f53a12650e047799358833a1.tar.bz2
llvm-a1514e24cc24b050f53a12650e047799358833a1.tar.xz
Sort includes for all of the .h files under the 'lib' tree. These were
missed in the first pass because the script didn't yet handle include guards. Note that the script is now able to handle all of these headers without manual edits. =] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AggressiveAntiDepBreaker.h')
-rw-r--r--lib/CodeGen/AggressiveAntiDepBreaker.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/AggressiveAntiDepBreaker.h b/lib/CodeGen/AggressiveAntiDepBreaker.h
index 7067784854..6683630fba 100644
--- a/lib/CodeGen/AggressiveAntiDepBreaker.h
+++ b/lib/CodeGen/AggressiveAntiDepBreaker.h
@@ -18,15 +18,15 @@
#define LLVM_CODEGEN_AGGRESSIVEANTIDEPBREAKER_H
#include "AntiDepBreaker.h"
+#include "llvm/ADT/BitVector.h"
+#include "llvm/ADT/SmallSet.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/CodeGen/ScheduleDAG.h"
-#include "llvm/Target/TargetSubtargetInfo.h"
#include "llvm/Target/TargetRegisterInfo.h"
-#include "llvm/ADT/BitVector.h"
-#include "llvm/ADT/SmallSet.h"
+#include "llvm/Target/TargetSubtargetInfo.h"
#include <map>
namespace llvm {