[llvm] r224807 - LiveInterval: Remove accidentally committed debug code.

Matthias Braun matze at braunis.de
Tue Dec 23 18:35:08 PST 2014


Author: matze
Date: Tue Dec 23 20:35:07 2014
New Revision: 224807

URL: http://llvm.org/viewvc/llvm-project?rev=224807&view=rev
Log:
LiveInterval: Remove accidentally committed debug code.

Modified:
    llvm/trunk/lib/CodeGen/LiveInterval.cpp

Modified: llvm/trunk/lib/CodeGen/LiveInterval.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveInterval.cpp?rev=224807&r1=224806&r2=224807&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveInterval.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveInterval.cpp Tue Dec 23 20:35:07 2014
@@ -677,8 +677,6 @@ void LiveInterval::constructMainRangeFro
       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::constructMainRangeFro
       }
     }
 
-#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::constructMainRangeFro
     }
   }
   assert(ActiveMask == 0 && !ConstructingSegment);
-  errs() << "Result: " << *this << "\n";
   verify();
 }
 





More information about the llvm-commits mailing list