* REMOVE extraneous debug info if DEBUG_RA is not set
* Spell PhyRegAlloc right.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@645 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp b/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp
index 17139e4..658f3d2 100644
--- a/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp
+++ b/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp
@@ -96,7 +96,7 @@
 	MachineOperand::MachineOperandType OpTyp = 
 	  OpI.getMachineOperand().getOperandType();
 
-	if ( OpTyp == MachineOperand::MO_CCRegister) {
+	if (DEBUG_RA && OpTyp == MachineOperand::MO_CCRegister) {
 	  cout << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:";
 	  printValue( OpI.getMachineOperand().getVRegValue() );
 	  cout << endl;