diff options
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp')
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp b/lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp index 217077eaa3..5f14631b06 100644 --- a/lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp +++ b/lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp @@ -90,7 +90,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1, char *val; - if( DEBUG_RA >= RA_DEBUG_Interference > 1) + if( DEBUG_RA >= RA_DEBUG_Interference) cerr << "setting intf for: [" << row << "][" << col << "]\n"; ( row > col) ? val = &IG[row][col]: val = &IG[col][row]; @@ -145,7 +145,7 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *LR1, assertIGNode( DestNode ); assertIGNode( SrcNode ); - if( DEBUG_RA >= RA_DEBUG_Interference > 1) { + if( DEBUG_RA >= RA_DEBUG_Interference) { cerr << "Merging LRs: \""; printSet(*LR1); cerr << "\" and \""; printSet(*LR2); cerr << "\"\n"; |