aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-06-04 03:09:57 +0000
committerChris Lattner <sabre@nondot.org>2002-06-04 03:09:57 +0000
commit44014418f55ac409a503f7b30d4bf3f9b12ab902 (patch)
tree919191b5126a493c7b828144f8d6e812fbb54968
parent0f99555ce4bba502e5213d83c405e88c7b35c628 (diff)
Disable debugging output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2756 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9RegInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9RegInfo.cpp b/lib/Target/SparcV9/SparcV9RegInfo.cpp
index 63498e79ae..a86e4f9384 100644
--- a/lib/Target/SparcV9/SparcV9RegInfo.cpp
+++ b/lib/Target/SparcV9/SparcV9RegInfo.cpp
@@ -1556,7 +1556,7 @@ void UltraSparcRegInfo::OrderAddedInstrns(std::vector<MachineInstr*> &UnordVec,
} while(!CouldMoveAll);
- if (DebugPrint) {
+ if (DebugPrint && DEBUG_RA) {
cerr << "\nAdded instructions were reordered to:\n";
for(unsigned int i=0; i < OrdVec.size(); i++)
cerr << *(OrdVec[i]);