summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-01-21 22:46:32 +0000
committerDan Gohman <gohman@apple.com>2010-01-21 22:46:32 +0000
commit940bd3e23666b44797270b0b0cd0609f74166980 (patch)
tree3d8c44ff81331271a9904046c1e060a199a4649f /lib/Transforms/Scalar
parent8b0ade3eb8281f9b332d5764cfe5c4ed3b2b32d8 (diff)
downloadllvm-940bd3e23666b44797270b0b0cd0609f74166980.tar.gz
llvm-940bd3e23666b44797270b0b0cd0609f74166980.tar.bz2
llvm-940bd3e23666b44797270b0b0cd0609f74166980.tar.xz
Include IVUsers information in LSR's debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar')
-rw-r--r--lib/Transforms/Scalar/LoopStrengthReduce.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
index a5b4fa4bcb..3341cb386d 100644
--- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp
+++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
@@ -2595,7 +2595,7 @@ LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
// Ok, we've now collected all the uses and noted their register uses. The
// next step is to start looking at register reuse possibilities.
- DEBUG(print(dbgs()); dbgs() << '\n');
+ DEBUG(print(dbgs()); dbgs() << '\n'; IU.dump());
// Create a sorted list of registers with those with the most uses appearing
// earlier in the list. We'll visit them first, as they're the most likely