diff options
Diffstat (limited to 'lib/CodeGen/RegAlloc/LiveRangeInfo.cpp')
-rw-r--r-- | lib/CodeGen/RegAlloc/LiveRangeInfo.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp b/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp index 5ef350207b..64cac9bd3b 100644 --- a/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp +++ b/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp @@ -120,8 +120,10 @@ void LiveRangeInfo::constructLiveRanges() OpI.getMachineOperand().getVRegValue(), isCC ); - if(isCC ) - cout << "\a" << "**created a LR for a CC reg**" << cout; + if(isCC ) { + cout << "\a**created a LR for a CC reg:"; + printValue( OpI.getMachineOperand().getVRegValue() ); + } DefRange->setRegClass( RegClassList[ rcid ] ); |