diff --git a/simd/src/arm/mod.rs b/simd/src/arm/mod.rs index 7fb7719c..8a111ccf 100644 --- a/simd/src/arm/mod.rs +++ b/simd/src/arm/mod.rs @@ -332,7 +332,7 @@ impl F32x4 { /// Converts these packed floats to integers via rounding. #[inline] pub fn to_i32x4(self) -> I32x4 { - unsafe { I32x4(round_v4f32(simd_cast(self.0))) } + unsafe { I32x4(simd_cast(round_v4f32(self.0))) } } }