Include IVUsers information in LSR's debug output.

llvm-svn: 94108
diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
index a5b4fa4..3341cb3 100644
--- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
@@ -2595,7 +2595,7 @@
 
   // 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