[llvm-commits] [llvm] r94108 - /llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
Dan Gohman
gohman at apple.com
Thu Jan 21 14:46:32 PST 2010
Author: djg
Date: Thu Jan 21 16:46:32 2010
New Revision: 94108
URL: http://llvm.org/viewvc/llvm-project?rev=94108&view=rev
Log:
Include IVUsers information in LSR's debug output.
Modified:
llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp?rev=94108&r1=94107&r2=94108&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LoopStrengthReduce.cpp Thu Jan 21 16:46:32 2010
@@ -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
More information about the llvm-commits
mailing list