diff options
| author | Michael McConville <mmcco@mykolab.com> | 2015-12-23 22:31:53 -0500 |
|---|---|---|
| committer | Michael McConville <mmcco@mykolab.com> | 2015-12-23 22:31:53 -0500 |
| commit | d958cfc2dee626bbfecda33070d7ccef6fb9468a (patch) | |
| tree | 4b4ec74851196b59177091070b13ac2a4ad8ced0 /src/test | |
| parent | 4ce1dafd1d58852a88f38a0f63cb11236a7470cb (diff) | |
| download | rust-d958cfc2dee626bbfecda33070d7ccef6fb9468a.tar.gz rust-d958cfc2dee626bbfecda33070d7ccef6fb9468a.zip | |
Simply two cfg attributes
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-make/simd-ffi/simd.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-make/simd-ffi/simd.rs b/src/test/run-make/simd-ffi/simd.rs index c0c4b1e7f3f..49fec6f3619 100644 --- a/src/test/run-make/simd-ffi/simd.rs +++ b/src/test/run-make/simd-ffi/simd.rs @@ -47,11 +47,11 @@ extern { fn integer(a: i32x4, b: i32x4) -> i32x4; // vmaxq_s32 - #[cfg(any(target_arch = "arm"))] + #[cfg(target_arch = "arm")] #[link_name = "llvm.arm.neon.vmaxs.v4i32"] fn integer(a: i32x4, b: i32x4) -> i32x4; // vmaxq_s32 - #[cfg(any(target_arch = "aarch64"))] + #[cfg(target_arch = "aarch64")] #[link_name = "llvm.aarch64.neon.maxs.v4i32"] fn integer(a: i32x4, b: i32x4) -> i32x4; |
