Print out all neighbors in interference graph, not just higher-numbered ones.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2003-07-10 19:43:33 +00:00
parent 3bf089227b
commit 51bda6fccb
2 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ void InterferenceGraph::printIG() const
if(Node) {
cerr << " [" << i << "] ";
for( unsigned int j=0; j < i; j++) {
for( unsigned int j=0; j < Size; j++) {
if(IG[i][j])
cerr << "(" << i << "," << j << ") ";
}

View File

@ -224,7 +224,7 @@ void InterferenceGraph::printIG() const
if(Node) {
cerr << " [" << i << "] ";
for( unsigned int j=0; j < i; j++) {
for( unsigned int j=0; j < Size; j++) {
if(IG[i][j])
cerr << "(" << i << "," << j << ") ";
}