From 92ccbb9f27ada81700713bd2ec9221d4da6c07c4 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Mon, 14 Oct 2002 16:32:49 +0000 Subject: [PATCH] Print "circular" warning message only in debug mode. llvm-svn: 4170 --- llvm/lib/Target/Sparc/SparcRegInfo.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/lib/Target/Sparc/SparcRegInfo.cpp b/llvm/lib/Target/Sparc/SparcRegInfo.cpp index 1e8f5e8eaef9..d7b20c032f3a 100644 --- a/llvm/lib/Target/Sparc/SparcRegInfo.cpp +++ b/llvm/lib/Target/Sparc/SparcRegInfo.cpp @@ -1733,9 +1733,8 @@ void UltraSparcRegInfo::moveInst2OrdVec(std::vector &OrdVec, cpMem2RegMI(OrdVec, getFramePointer(), StackOff, DReg, RegType); - cerr << "\nFixed CIRCULAR references by reordering"; - if( DEBUG_RA ) { + cerr << "\nFixed CIRCULAR references by reordering:"; cerr << "\nBefore CIRCULAR Reordering:\n"; cerr << *UnordInst; cerr << *OrdInst;