diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-29 16:51:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-29 16:51:05 +0000 |
commit | cb6b4bd1c6245ce78214210655eecf12cd8a4db2 (patch) | |
tree | b998d3ae574bbbc4ea9e42b5c7f140a4e3c2d6f9 /lib/CodeGen/RegAlloc/LiveRangeInfo.cpp | |
parent | 770feb4bfcd920498ec24296685495678579bb65 (diff) |
Add #includes that were eliminated from headers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAlloc/LiveRangeInfo.cpp')
-rw-r--r-- | lib/CodeGen/RegAlloc/LiveRangeInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp b/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp index 4e47bfb9e7..bb1b0bb089 100644 --- a/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp +++ b/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp @@ -7,6 +7,7 @@ #include "llvm/CodeGen/LiveRangeInfo.h" #include "llvm/CodeGen/RegAllocCommon.h" #include "llvm/CodeGen/RegClass.h" +#include "llvm/CodeGen/IGNode.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/Target/TargetMachine.h" @@ -32,7 +33,7 @@ LiveRangeInfo::~LiveRangeInfo() { // live range. We have to make the other entries NULL when we delete // a live range. - for(LiveRange::iterator LI = LR->begin(); LI != LR->end(); ++LI) + for (LiveRange::iterator LI = LR->begin(); LI != LR->end(); ++LI) LiveRangeMap[*LI] = 0; delete LR; |