summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2014-12-24 02:35:07 +0000
committerMatthias Braun <matze@braunis.de>2014-12-24 02:35:07 +0000
commit13a193db055718a10d77156e60420c9610cfbb6b (patch)
treec29b61bbb4985201b4f832de82f86413a5879e8f /lib/CodeGen/LiveInterval.cpp
parent8882414a1107586c13c61a7dd39fd460e6594031 (diff)
LiveInterval: Remove accidentally committed debug code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224807 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index f7ce29d8976..68513956af6 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -677,8 +677,6 @@ void LiveInterval::constructMainRangeFromSubranges(
Last = SR.segments.back().end;
}
- errs() << "Compute: " << *this << "\n";
-
// Walk over all subranges simultaneously.
Segment CurrentSegment;
bool ConstructingSegment = false;
@@ -732,13 +730,6 @@ void LiveInterval::constructMainRangeFromSubranges(
}
}
-#if 1
- errs() << '\t' << (Event == NOTHING ? "nothing "
- : Event == BEGIN_SEGMENT ? "begin "
- : "end ")
- << NextPos << " mask " << ActiveMask << " evmask " << EventMask << " def " << IsDef << "\n";
-#endif
-
// Advance scan position.
Pos = NextPos;
if (Event == BEGIN_SEGMENT) {
@@ -819,7 +810,6 @@ void LiveInterval::constructMainRangeFromSubranges(
}
}
assert(ActiveMask == 0 && !ConstructingSegment);
- errs() << "Result: " << *this << "\n";
verify();
}