summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-09-15 15:33:48 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-09-15 15:33:48 +0000
commit993243e599887bbe9b19ed2fae98fa94e0861b96 (patch)
treec9934970033c6b533f9bcfd43b7e1e3fc5e7d56d
parent4bc23480087be69a227edc847624b35ab672a33d (diff)
downloadllvm-993243e599887bbe9b19ed2fae98fa94e0861b96.tar.gz
llvm-993243e599887bbe9b19ed2fae98fa94e0861b96.tar.bz2
llvm-993243e599887bbe9b19ed2fae98fa94e0861b96.tar.xz
Fix typos in previous checkin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3726 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/RegAlloc/InterferenceGraph.cpp4
-rw-r--r--lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/RegAlloc/InterferenceGraph.cpp b/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
index 217077eaa3..5f14631b06 100644
--- a/lib/CodeGen/RegAlloc/InterferenceGraph.cpp
+++ b/lib/CodeGen/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";
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";