Header is moved into local directory

llvm-svn: 5311
This commit is contained in:
Chris Lattner 2003-01-15 21:00:02 +00:00
parent 5f738161ae
commit 14802a539d
1 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "RegAllocCommon.h" #include "RegAllocCommon.h"
#include "llvm/CodeGen/InterferenceGraph.h" #include "InterferenceGraph.h"
#include "llvm/CodeGen/IGNode.h" #include "llvm/CodeGen/IGNode.h"
#include "Support/STLExtras.h" #include "Support/STLExtras.h"
#include <algorithm> #include <algorithm>
@ -115,8 +115,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1,
// return whether two live ranges interfere // return whether two live ranges interfere
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
unsigned InterferenceGraph::getInterference(const LiveRange *const LR1, unsigned InterferenceGraph::getInterference(const LiveRange *const LR1,
const LiveRange *const LR2 ) const { const LiveRange *const LR2) const {
assert(LR1 != LR2); assert(LR1 != LR2);
assertIGNode(this, LR1->getUserIGNode()); assertIGNode(this, LR1->getUserIGNode());
assertIGNode(this, LR2->getUserIGNode()); assertIGNode(this, LR2->getUserIGNode());