mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Fix typos in previous checkin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3726 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -90,7 +90,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1,
|
|||||||
|
|
||||||
char *val;
|
char *val;
|
||||||
|
|
||||||
if( DEBUG_RA >= RA_DEBUG_Interference > 1)
|
if( DEBUG_RA >= RA_DEBUG_Interference)
|
||||||
cerr << "setting intf for: [" << row << "][" << col << "]\n";
|
cerr << "setting intf for: [" << row << "][" << col << "]\n";
|
||||||
|
|
||||||
( row > col) ? val = &IG[row][col]: val = &IG[col][row];
|
( row > col) ? val = &IG[row][col]: val = &IG[col][row];
|
||||||
@ -145,7 +145,7 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *LR1,
|
|||||||
assertIGNode( DestNode );
|
assertIGNode( DestNode );
|
||||||
assertIGNode( SrcNode );
|
assertIGNode( SrcNode );
|
||||||
|
|
||||||
if( DEBUG_RA >= RA_DEBUG_Interference > 1) {
|
if( DEBUG_RA >= RA_DEBUG_Interference) {
|
||||||
cerr << "Merging LRs: \""; printSet(*LR1);
|
cerr << "Merging LRs: \""; printSet(*LR1);
|
||||||
cerr << "\" and \""; printSet(*LR2);
|
cerr << "\" and \""; printSet(*LR2);
|
||||||
cerr << "\"\n";
|
cerr << "\"\n";
|
||||||
|
@ -90,7 +90,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1,
|
|||||||
|
|
||||||
char *val;
|
char *val;
|
||||||
|
|
||||||
if( DEBUG_RA >= RA_DEBUG_Interference > 1)
|
if( DEBUG_RA >= RA_DEBUG_Interference)
|
||||||
cerr << "setting intf for: [" << row << "][" << col << "]\n";
|
cerr << "setting intf for: [" << row << "][" << col << "]\n";
|
||||||
|
|
||||||
( row > col) ? val = &IG[row][col]: val = &IG[col][row];
|
( row > col) ? val = &IG[row][col]: val = &IG[col][row];
|
||||||
@ -145,7 +145,7 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *LR1,
|
|||||||
assertIGNode( DestNode );
|
assertIGNode( DestNode );
|
||||||
assertIGNode( SrcNode );
|
assertIGNode( SrcNode );
|
||||||
|
|
||||||
if( DEBUG_RA >= RA_DEBUG_Interference > 1) {
|
if( DEBUG_RA >= RA_DEBUG_Interference) {
|
||||||
cerr << "Merging LRs: \""; printSet(*LR1);
|
cerr << "Merging LRs: \""; printSet(*LR1);
|
||||||
cerr << "\" and \""; printSet(*LR2);
|
cerr << "\" and \""; printSet(*LR2);
|
||||||
cerr << "\"\n";
|
cerr << "\"\n";
|
||||||
|
Reference in New Issue
Block a user