[PATCH] D32863: InstructionSimplify: Relanding r301766
Zvi Rackover via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 4 07:14:15 PDT 2017
zvi added inline comments.
================
Comment at: lib/Analysis/InstructionSimplify.cpp:4094
+ continue;
+ Idx = Idx < (int)InVecNumElts ? Idx + InVecNumElts : Idx - InVecNumElts;
+ }
----------------
This line was replaced to fix the typo in D32338:
```
Idx = Idx < (int)MaskNumElts ? Idx + MaskNumElts : Idx - MaskNumElts;
```
https://reviews.llvm.org/D32863
More information about the llvm-commits
mailing list