aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-15 21:00:02 +0000
committerChris Lattner <sabre@nondot.org>2003-01-15 21:00:02 +0000
commit4cfd622252d7b9cd1cd37fc6807631388e045655 (patch)
treeb394a765a51f411389073e73676ee0767e0e40b5 /lib/CodeGen/RegAlloc/InterferenceGraph.cpp
parentc7c7b7ab75634145506b08e3f1cdd7a4405aad29 (diff)
Header is moved into local directory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5311 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAlloc/InterferenceGraph.cpp')
-rw-r--r--lib/CodeGen/RegAlloc/InterferenceGraph.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/RegAlloc/InterferenceGraph.cpp b/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
index b5e26887c4..b9d61b6ad0 100644
--- a/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
+++ b/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
@@ -5,7 +5,7 @@
//===----------------------------------------------------------------------===//
#include "RegAllocCommon.h"
-#include "llvm/CodeGen/InterferenceGraph.h"
+#include "InterferenceGraph.h"
#include "llvm/CodeGen/IGNode.h"
#include "Support/STLExtras.h"
#include <algorithm>
@@ -115,8 +115,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1,
// return whether two live ranges interfere
//----------------------------------------------------------------------------
unsigned InterferenceGraph::getInterference(const LiveRange *const LR1,
- const LiveRange *const LR2 ) const {
-
+ const LiveRange *const LR2) const {
assert(LR1 != LR2);
assertIGNode(this, LR1->getUserIGNode());
assertIGNode(this, LR2->getUserIGNode());