Trim debug spew
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Tue, 8 Feb 2011 19:33:58 +0000 (19:33 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Tue, 8 Feb 2011 19:33:58 +0000 (19:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125109 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/RegAllocGreedy.cpp

index be01bdce44c3a8d809b033e64a2c2f99013eb5b7..4957847348e1ed193c3f53abaccd0de450ab54a8 100644 (file)
@@ -444,7 +444,6 @@ float RAGreedy::calcInterferenceInfo(LiveInterval &VirtReg, unsigned PhysReg) {
   for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
     if (!query(VirtReg, *AI).checkInterference())
       continue;
-    DEBUG(PhysReg2LiveUnion[*AI].print(dbgs(), TRI));
     LiveIntervalUnion::SegmentIter IntI =
       PhysReg2LiveUnion[*AI].find(VirtReg.beginIndex());
     if (!IntI.valid())