diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-03 18:25:53 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-09-03 18:25:53 +0000 |
commit | 08a6c7614be9793754b17930ba619e875aef9585 (patch) | |
tree | 90b67bcf41c21a68f006766fdca16d49fe4e07b5 /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 20aa474f8fbebde588edc101b90e834df28ce4ce (diff) |
Order #includes alphabetically, local .h files first.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index e6815a8f3b..3ebd907586 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -17,6 +17,7 @@ #define DEBUG_TYPE "liveintervals" #include "LiveIntervalAnalysis.h" +#include "VirtRegMap.h" #include "llvm/Value.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/CodeGen/LiveVariables.h" @@ -31,10 +32,8 @@ #include "llvm/Support/Debug.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" -#include "VirtRegMap.h" -#include <cmath> #include <algorithm> - +#include <cmath> using namespace llvm; namespace { |