Start using SplitKit and MachineLoopRanges in RegAllocGreedy in preparation of
[oota-llvm.git] / lib / CodeGen / LiveIntervalUnion.cpp
index d18044a099d122b1b96265c7fc17205d3ddfac67..079468a4f0398971d642fc7e0f3795337873359e 100644 (file)
@@ -83,8 +83,8 @@ LiveIntervalUnion::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
 
 void LiveIntervalUnion::InterferenceResult::print(raw_ostream &OS,
                                           const TargetRegisterInfo *TRI) const {
-  OS << '[' << start() << ';' << stop() << ")\t";
-  interference()->print(OS, TRI);
+  OS << '[' << start() << ';' << stop() << "):";
+  TRI->printReg(interference()->reg, OS);
 }
 
 void LiveIntervalUnion::Query::print(raw_ostream &OS,