Hrm, you didn't see this.
authorChris Lattner <sabre@nondot.org>
Sun, 9 Oct 2005 06:24:02 +0000 (06:24 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 9 Oct 2005 06:24:02 +0000 (06:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23673 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopStrengthReduce.cpp

index b828c0da2a9beb9145df72730d92078703bb4728..9a1cb8ecc9d1c2406eefeb1361e7290c49e6913f 100644 (file)
@@ -1049,9 +1049,6 @@ void LoopStrengthReduce::runOnLoop(Loop *L) {
   // If we only have one stride, we can more aggressively eliminate some things.
   bool HasOneStride = IVUsesByStride.size() == 1;
   
-  if (IVUsesByStride.size() == 123)
-    std::cerr << "FOO!\n";
-
   // Note: this processes each stride/type pair individually.  All users passed
   // into StrengthReduceStridedIVUsers have the same type AND stride.  Also,
   // node that we iterate over IVUsesByStride indirectly by using StrideOrder.