summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2015-04-08 02:10:01 +0000
committerMatthias Braun <matze@braunis.de>2015-04-08 02:10:01 +0000
commita6099cb2e12b52a4124449cb2c0e3867f4ca53df (patch)
tree23436b100e7dacb1743bef7892635e8dffe976b4 /lib/CodeGen/LiveInterval.cpp
parent65bae699c4ae6fcd2c56a84a68ab9651ab1d18d1 (diff)
Oops, didn't mean to commit my debug fprintfs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 246d21089e6..d75e4417cb0 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/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;