aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-23 01:01:21 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-23 01:01:21 +0000
commit98e17cf54345a4e9ab0ded690cdb41c0cd219c8e (patch)
tree5e651e0af0fdeffcaec691860ed620ff09d133c0 /lib
parent888b1a6ccdd0b12a71a38c6318b9e773006d5564 (diff)
downloadexternal_llvm-98e17cf54345a4e9ab0ded690cdb41c0cd219c8e.zip
external_llvm-98e17cf54345a4e9ab0ded690cdb41c0cd219c8e.tar.gz
external_llvm-98e17cf54345a4e9ab0ded690cdb41c0cd219c8e.tar.bz2
Move LiveIntervals.h up to be the first included header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11721 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index b6a6613..024ff12 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -16,6 +16,7 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "liveintervals"
+#include "LiveIntervals.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/CodeGen/LiveVariables.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
@@ -30,7 +31,6 @@
#include "Support/Debug.h"
#include "Support/Statistic.h"
#include "Support/STLExtras.h"
-#include "LiveIntervals.h"
#include <cmath>
#include <iostream>
#include <limits>