aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-02-08 19:33:58 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-02-08 19:33:58 +0000
commit124e423ccec42e54a8b069e1c2ef9adfaa1e553a (patch)
tree343c658daeeb59f2b7c2b012052587b829a9b3a7
parent7b1f498a7648b790929a4f97fd82228aa7ac7bea (diff)
downloadexternal_llvm-124e423ccec42e54a8b069e1c2ef9adfaa1e553a.zip
external_llvm-124e423ccec42e54a8b069e1c2ef9adfaa1e553a.tar.gz
external_llvm-124e423ccec42e54a8b069e1c2ef9adfaa1e553a.tar.bz2
Trim debug spew
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125109 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index be01bdc..4957847 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/lib/CodeGen/RegAllocGreedy.cpp
@@ -444,7 +444,6 @@ float RAGreedy::calcInterferenceInfo(LiveInterval &VirtReg, unsigned PhysReg) {
for (const unsigned *AI = TRI->getOverlaps(PhysReg); *AI; ++AI) {
if (!query(VirtReg, *AI).checkInterference())
continue;
- DEBUG(PhysReg2LiveUnion[*AI].print(dbgs(), TRI));
LiveIntervalUnion::SegmentIter IntI =
PhysReg2LiveUnion[*AI].find(VirtReg.beginIndex());
if (!IntI.valid())