mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 17:00:01 +00:00
allow -1 strides to reuse "1" strides.
llvm-svn: 35607
This commit is contained in:
parent
03edb8b08e
commit
3df2382275
@ -929,7 +929,8 @@ unsigned LoopStrengthReduce::CheckForIVReuse(const SCEVHandle &Stride,
|
||||
for (std::map<SCEVHandle, IVsOfOneStride>::iterator SI= IVsByStride.begin(),
|
||||
SE = IVsByStride.end(); SI != SE; ++SI) {
|
||||
int64_t SSInt = cast<SCEVConstant>(SI->first)->getValue()->getSExtValue();
|
||||
if (unsigned(abs(SInt)) < SSInt || (SInt % SSInt) != 0)
|
||||
if (SInt != -SSInt &&
|
||||
(unsigned(abs(SInt)) < SSInt || (SInt % SSInt) != 0))
|
||||
continue;
|
||||
int64_t Scale = SInt / SSInt;
|
||||
// Check that this stride is valid for all the types used for loads and
|
||||
|
Loading…
x
Reference in New Issue
Block a user