Fixes pr52561
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Which of the patterns that you changed is actually causing the crash and is it possible to create a test case for the other?
Comment Actions
The pattern is MaskVT == MVT::v16i16 and Mask = {0, -2, -2, ..., -2}. It matches the conditions in line 36273 and 36274. I tried several times but failed to generate Mask = {0, -1, -1, ..., -1} to match the condition in line 36220.
The conditions in line 36221 and 36222 are only avaliable for MaskVT == MVT::v8i16. So I didn't create another test cast.
Thanks!