Skip to content

Commit 3989f65

Browse files
committed
Auto merge of #30547 - mmcco:cfg, r=sanxiyn
2 parents 0e9f6ec + d958cfc commit 3989f65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/run-make/simd-ffi/simd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ extern {
4747
fn integer(a: i32x4, b: i32x4) -> i32x4;
4848

4949
// vmaxq_s32
50-
#[cfg(any(target_arch = "arm"))]
50+
#[cfg(target_arch = "arm")]
5151
#[link_name = "llvm.arm.neon.vmaxs.v4i32"]
5252
fn integer(a: i32x4, b: i32x4) -> i32x4;
5353
// vmaxq_s32
54-
#[cfg(any(target_arch = "aarch64"))]
54+
#[cfg(target_arch = "aarch64")]
5555
#[link_name = "llvm.aarch64.neon.maxs.v4i32"]
5656
fn integer(a: i32x4, b: i32x4) -> i32x4;
5757

0 commit comments

Comments
 (0)