Skip to content

Commit a0e0528

Browse files
committed
Increase min llvm version for assembly test
There seems to be a small difference in generated code. In CI with llvm 16: cmgt v0.16b, v1.16b, v0.16b Locally with bundled llvm: cmge v0.16b, v0.16b, #0
1 parent 3c36ae4 commit a0e0528

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//@ [x86] needs-llvm-components: x86
55
//@ [aarch64] compile-flags: --target=aarch64-unknown-linux-gnu
66
//@ [aarch64] needs-llvm-components: aarch64
7-
//@ [aarch64] min-llvm-version: 15.0
7+
//@ [aarch64] min-llvm-version: 18.0
88
//@ assembly-output: emit-asm
99
//@ compile-flags: --crate-type=lib -O
1010

@@ -32,7 +32,7 @@ extern "rust-intrinsic" {
3232
pub unsafe fn mask_reduce_all(m: mask8x16) -> bool {
3333
// x86: movdqa
3434
// x86-NEXT: pmovmskb
35-
// aarch64: cmge
35+
// aarch64: cmgt
3636
// aarch64-NEXT: umaxv
3737
simd_reduce_all(m)
3838
}

0 commit comments

Comments
 (0)