Skip to content

Commit 3c36ae4

Browse files
committed
Format assembly test
1 parent 83a5dd4 commit 3c36ae4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/assembly/simd-intrinsic-mask-load.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ pub unsafe fn load_f32x8(mask: m32x8, pointer: *const f32, output: *mut f32x8) {
4646
// x86-avx512: vpcmpgtd k1
4747
// x86-avx512-NEXT: vmovups ymm0 {k1} {z}
4848
// x86-avx512-NEXT: vmovaps
49-
*output = simd_masked_load(mask, pointer, f32x8([0_f32, 0_f32, 0_f32, 0_f32, 0_f32, 0_f32, 0_f32, 0_f32]))
49+
*output = simd_masked_load(
50+
mask,
51+
pointer,
52+
f32x8([0_f32, 0_f32, 0_f32, 0_f32, 0_f32, 0_f32, 0_f32, 0_f32]),
53+
)
5054
}
5155

5256
// CHECK-LABEL: load_f64x4

0 commit comments

Comments
 (0)