From: Jakob Stoklund Olesen Date: Tue, 8 Feb 2011 19:33:58 +0000 (+0000) Subject: Trim debug spew X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=124e423ccec42e54a8b069e1c2ef9adfaa1e553a;p=oota-llvm.git Trim debug spew git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125109 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp index be01bdce44c..4957847348e 100644 --- a/lib/CodeGen/RegAllocGreedy.cpp +++ b/lib/CodeGen/RegAllocGreedy.cpp @@ -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())