From 0ff4e2105ba0d8e378cbd01bf9f4db935d1bf39f Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Thu, 12 Mar 2009 06:58:19 +0000 Subject: [PATCH] Reorganize some #include's. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66780 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/Spiller.cpp | 5 ++++- lib/CodeGen/Spiller.h | 4 ---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/CodeGen/Spiller.cpp b/lib/CodeGen/Spiller.cpp index 7c7a1dd7037..78daff64419 100644 --- a/lib/CodeGen/Spiller.cpp +++ b/lib/CodeGen/Spiller.cpp @@ -9,7 +9,10 @@ #define DEBUG_TYPE "spiller" #include "Spiller.h" - +#include "llvm/Support/Compiler.h" +#include "llvm/ADT/DepthFirstIterator.h" +#include "llvm/ADT/Statistic.h" +#include "llvm/ADT/STLExtras.h" #include using namespace llvm; diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h index ae9565d4aca..e85922ec397 100644 --- a/lib/CodeGen/Spiller.h +++ b/lib/CodeGen/Spiller.h @@ -24,13 +24,9 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Support/CommandLine.h" -#include "llvm/Support/Compiler.h" #include "llvm/Support/Debug.h" #include "llvm/ADT/BitVector.h" #include "llvm/ADT/DenseMap.h" -#include "llvm/ADT/DepthFirstIterator.h" -#include "llvm/ADT/Statistic.h" -#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallSet.h" #include "VirtRegMap.h" #include