[llvm] [DA] use NSW arithmetic (PR #116632)
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 07:26:39 PST 2025
================
@@ -3116,11 +3116,9 @@ const SCEV *DependenceInfo::addToCoefficient(const SCEV *Expr,
const Loop *TargetLoop,
const SCEV *Value) const {
const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Expr);
- if (!AddRec) // create a new addRec
- return SE->getAddRecExpr(Expr,
- Value,
- TargetLoop,
- SCEV::FlagAnyWrap); // Worst case, with no info.
+ if (!AddRec)
+ return SE->getAddRecExpr(Expr, Value, TargetLoop, SCEV::FlagNSW);
----------------
Meinersbur wrote:
I assume this is the answer to my original question?
> Where does this happen? If it already ensured that no wrap happens it should be safe.
Doesn't make the claim in the comment that "NSW==linear" correct though.
https://github.com/llvm/llvm-project/pull/116632
More information about the llvm-commits
mailing list