forked from OSchip/llvm-project
Temporarily revert 123133, it's causing some regressions and I'm trying
to get a testcase. llvm-svn: 123225
This commit is contained in:
parent
193ce7c4d1
commit
23bf3bafb7
|
@ -1560,14 +1560,10 @@ const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
|
||||||
AddRecOps[0] = getAddExpr(LIOps);
|
AddRecOps[0] = getAddExpr(LIOps);
|
||||||
|
|
||||||
// Build the new addrec. Propagate the NUW and NSW flags if both the
|
// Build the new addrec. Propagate the NUW and NSW flags if both the
|
||||||
// outer add and the inner addrec are guaranteed to have no overflow or if
|
// outer add and the inner addrec are guaranteed to have no overflow.
|
||||||
// there is no outer part.
|
const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop,
|
||||||
if (Ops.size() != 1) {
|
HasNUW && AddRec->hasNoUnsignedWrap(),
|
||||||
HasNUW &= AddRec->hasNoUnsignedWrap();
|
HasNSW && AddRec->hasNoSignedWrap());
|
||||||
HasNSW &= AddRec->hasNoSignedWrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop, HasNUW, HasNSW);
|
|
||||||
|
|
||||||
// If all of the other operands were loop invariant, we are done.
|
// If all of the other operands were loop invariant, we are done.
|
||||||
if (Ops.size() == 1) return NewRec;
|
if (Ops.size() == 1) return NewRec;
|
||||||
|
|
Loading…
Reference in New Issue