diff options
author | Matthias Braun <matze@braunis.de> | 2014-12-24 02:35:07 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2014-12-24 02:35:07 +0000 |
commit | 51ca5100944d894e2bf16447f55ad999d624f74f (patch) | |
tree | 9c4199991a86da4abb1c3d95051e68f86437dbdf /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | dbcca0dbb412de554c92a7cf91568b6986999eac (diff) | |
download | bcm5719-llvm-51ca5100944d894e2bf16447f55ad999d624f74f.tar.gz bcm5719-llvm-51ca5100944d894e2bf16447f55ad999d624f74f.zip |
LiveInterval: Remove accidentally committed debug code.
llvm-svn: 224807
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index f7ce29d8976..68513956af6 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/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(); } |