aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
diff options
context:
space:
mode:
authorChuanqi Xu <yedeng.yd@linux.alibaba.com>2022-06-08 15:45:21 +0800
committerChuanqi Xu <yedeng.yd@linux.alibaba.com>2022-06-08 15:58:06 +0800
commit0e10f1284455aaa54cbcad145238ecedd0d57e48 (patch)
tree6798a7032126956b65a83d8a033f5c39eb4827ca /llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
parentc06ef17359efcab643c09ba54fa1381ea184986d (diff)
downloadllvm-0e10f1284455aaa54cbcad145238ecedd0d57e48.zip
llvm-0e10f1284455aaa54cbcad145238ecedd0d57e48.tar.gz
llvm-0e10f1284455aaa54cbcad145238ecedd0d57e48.tar.bz2
[NFC] Remove commented cerr debugging loggings
There are some unused cerr debugging loggings in the codes. It is weird to remain such commented debug helpers in the product.
Diffstat (limited to 'llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp b/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
index 683d197..cd03d6b 100644
--- a/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
+++ b/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
@@ -1632,7 +1632,6 @@ Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) {
NewS = Ext;
const SCEV *V = cast<SCEVAddRecExpr>(NewS)->evaluateAtIteration(IH, SE);
- //cerr << "Evaluated: " << *this << "\n to: " << *V << "\n";
// Truncate the result down to the original type, if needed.
const SCEV *T = SE.getTruncateOrNoop(V, Ty);