[llvm] r234385 - Oops, didn't mean to commit my debug fprintfs
Matthias Braun
matze at braunis.de
Tue Apr 7 19:10:01 PDT 2015
Author: matze
Date: Tue Apr 7 21:10:01 2015
New Revision: 234385
URL: http://llvm.org/viewvc/llvm-project?rev=234385&view=rev
Log:
Oops, didn't mean to commit my debug fprintfs
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=234385&r1=234384&r2=234385&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveInterval.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveInterval.cpp Tue Apr 7 21:10:01 2015
@@ -839,7 +839,6 @@ static void determineMissingVNIs(const S
}
// 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::constructMainRangeFro
// 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;
More information about the llvm-commits
mailing list