diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-11-26 09:46:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-11-26 09:46:52 +0000 |
commit | b7427031372337e6d67f9573ec6c722ab5ea913e (patch) | |
tree | 81d17a2f061f022381d1f4104579aaa51ca84f31 /lib/Transforms/Scalar/LoopUnroll.cpp | |
parent | 62c804a3ea537a83f307ed9c2788138cc47cc2ed (diff) | |
download | external_llvm-b7427031372337e6d67f9573ec6c722ab5ea913e.zip external_llvm-b7427031372337e6d67f9573ec6c722ab5ea913e.tar.gz external_llvm-b7427031372337e6d67f9573ec6c722ab5ea913e.tar.bz2 |
Removed #include <iostream> and replaced with llvm_* streams.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31923 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopUnroll.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopUnroll.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/Transforms/Scalar/LoopUnroll.cpp b/lib/Transforms/Scalar/LoopUnroll.cpp index 2fa3fcd..9d14891 100644 --- a/lib/Transforms/Scalar/LoopUnroll.cpp +++ b/lib/Transforms/Scalar/LoopUnroll.cpp @@ -34,7 +34,6 @@ #include <cstdio> #include <set> #include <algorithm> -#include <iostream> using namespace llvm; namespace { @@ -134,7 +133,7 @@ BasicBlock* LoopUnroll::FoldBlockIntoPredecessor(BasicBlock* BB) { if (OnlyPred->getTerminator()->getNumSuccessors() != 1) return 0; - DEBUG(std::cerr << "Merging: " << *BB << "into: " << *OnlyPred); + DOUT << "Merging: " << *BB << "into: " << *OnlyPred; // Resolve any PHI nodes at the start of the block. They are all // guaranteed to have exactly one entry if they exist, unless there are @@ -194,15 +193,15 @@ bool LoopUnroll::visitLoop(Loop *L) { return Changed; // More than 2^32 iterations??? unsigned LoopSize = ApproximateLoopSize(L); - DEBUG(std::cerr << "Loop Unroll: F[" << Header->getParent()->getName() - << "] Loop %" << Header->getName() << " Loop Size = " - << LoopSize << " Trip Count = " << TripCountFull << " - "); + DOUT << "Loop Unroll: F[" << Header->getParent()->getName() + << "] Loop %" << Header->getName() << " Loop Size = " + << LoopSize << " Trip Count = " << TripCountFull << " - "; uint64_t Size = (uint64_t)LoopSize*TripCountFull; if (Size > UnrollThreshold) { - DEBUG(std::cerr << "TOO LARGE: " << Size << ">" << UnrollThreshold << "\n"); + DOUT << "TOO LARGE: " << Size << ">" << UnrollThreshold << "\n"; return Changed; } - DEBUG(std::cerr << "UNROLLING!\n"); + DOUT << "UNROLLING!\n"; std::vector<BasicBlock*> LoopBlocks = L->getBlocks(); |