We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61576b0 commit 803623eCopy full SHA for 803623e
tests/codegen/simd/repr-packed.rs
@@ -26,6 +26,7 @@ fn load<T, const N: usize>(v: Simd<T, N>) -> FullSimd<T, N> {
26
// CHECK-LABEL: @square_packed
27
#[no_mangle]
28
pub fn square_packed(x: Simd<f32, 3>) -> FullSimd<f32, 3> {
29
+ // CHECK: align 4 dereferenceable(12) %x
30
// CHECK: load <3 x float>, ptr %x, align 4
31
let x = load(x);
32
unsafe { simd_mul(x, x) }
0 commit comments