From: Matthias Braun Date: Wed, 8 Apr 2015 02:10:01 +0000 (+0000) Subject: Oops, didn't mean to commit my debug fprintfs X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b9210264fadd84284a7467f0d635884598f6f62;p=platform%2Fupstream%2Fllvm.git Oops, didn't mean to commit my debug fprintfs llvm-svn: 234385 --- diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 246d210..d75e441 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -839,7 +839,6 @@ static void determineMissingVNIs(const SlotIndexes &Indexes, LiveInterval &LI) { } // Merge with previous segment if it has the same VNI. if (PrevValNo == S.valno && OutIt->end == S.start) { - fprintf(stderr, "Adjancency fix\n"); OutIt->end = S.end; } else { // Didn't merge. Move OutIt to next segment. @@ -982,10 +981,8 @@ void LiveInterval::constructMainRangeFromSubranges( // number (if they come from different subranges, but happen to have // the same defining instruction). VNIFixup will fix those cases. if (!empty() && segments.back().end == Pos && - segments.back().valno == VNI) { - fprintf(stderr, "Need Adjacency fixup\n"); + segments.back().valno == VNI) NeedVNIFixup = true; - } CurrentSegment.start = Pos; CurrentSegment.valno = VNI; ConstructingSegment = true;