LiveInterval: Remove accidentally committed debug code.
[oota-llvm.git] / lib / CodeGen / LiveInterval.cpp
index f7ce29d8976d7bc90be2913eee09382a0fd7f795..68513956af6558ebbef21fb875e96419d57befbf 100644 (file)
@@ -677,8 +677,6 @@ void LiveInterval::constructMainRangeFromSubranges(
       Last = SR.segments.back().end;
   }
 
-  errs() << "Compute: " << *this << "\n";
-
   // Walk over all subranges simultaneously.
   Segment CurrentSegment;
   bool ConstructingSegment = false;
@@ -732,13 +730,6 @@ void LiveInterval::constructMainRangeFromSubranges(
       }
     }
 
-#if 1
-    errs() << '\t' << (Event == NOTHING ? "nothing "
-            : Event == BEGIN_SEGMENT ? "begin "
-            : "end ")
-           << NextPos << " mask " << ActiveMask << " evmask " << EventMask << " def " << IsDef << "\n";
-#endif
-
     // Advance scan position.
     Pos = NextPos;
     if (Event == BEGIN_SEGMENT) {
@@ -819,7 +810,6 @@ void LiveInterval::constructMainRangeFromSubranges(
     }
   }
   assert(ActiveMask == 0 && !ConstructingSegment);
-  errs() << "Result: " << *this << "\n";
   verify();
 }