You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SPIR][InstCombine] Work around SPIR-V translator limitation (#2143)
This is temporary work-around for a problem reported here:
KhronosGroup/SPIRV-LLVM-Translator#645
InstCombine canonical form for this pattern
```
// Example (little endian):
// trunc (extractelement <4 x i64> %X, 0) to i32
// --->
// extractelement <8 x i32> (bitcast <4 x i64> %X to <8 x i32>), i32 0
```
can't be lowered by SPIR-V translator to "standard" format.
0 commit comments