mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
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:
parent
3bf089227b
commit
51bda6fccb
@ -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 << ") ";
|
||||
}
|
||||
|
@ -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 << ") ";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user