From 3f62ef6e5851a0d8522bedb03379d68d4bf9a967 Mon Sep 17 00:00:00 2001 From: Afonso Bordado Date: Tue, 7 Sep 2021 18:13:45 +0100 Subject: [PATCH] cranelift: Fix Build error #3304 and #3268 are slightly incomptible and caused the build to fail when they were merged together --- cranelift/interpreter/src/step.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/interpreter/src/step.rs b/cranelift/interpreter/src/step.rs index 309b9305d1..ce53528c20 100644 --- a/cranelift/interpreter/src/step.rs +++ b/cranelift/interpreter/src/step.rs @@ -791,7 +791,7 @@ where Opcode::Splat => { let mut new_vector = SimdVec::new(); for _ in 0..ctrl_ty.lane_count() { - new_vector.push(arg(0)?.into_int()?); + new_vector.push(arg(0)?); } assign(vectorizelanes(&new_vector, ctrl_ty)?) }