We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 505a877 commit 7992960Copy full SHA for 7992960
1 file changed
crates/cranelift/src/func_environ.rs
@@ -3445,7 +3445,7 @@ impl FuncEnvironment<'_> {
3445
) -> ir::Value {
3446
// As above, fall back to a builtin if we lack SSSE3.
3447
if !self.is_x86() || self.isa.has_x86_pshufb_lowering() {
3448
- if self.relaxed_simd_deterministic() || self.isa.triple().is_pulley() {
+ if !self.is_x86() || self.relaxed_simd_deterministic() {
3449
builder.ins().swizzle(a, b)
3450
} else {
3451
builder.ins().x86_pshufb(a, b)
0 commit comments