From dcbf5014475942f78232963e43fb6edf94be2369 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 13 Feb 2019 18:35:26 +0100 Subject: [PATCH] acle/simd32: also expose on the A profile addresses https://github.com/rust-lang-nursery/stdsimd/pull/557#discussion_r255253933 --- crates/core_arch/src/acle/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/core_arch/src/acle/mod.rs b/crates/core_arch/src/acle/mod.rs index 843115a366..59197a0df9 100644 --- a/crates/core_arch/src/acle/mod.rs +++ b/crates/core_arch/src/acle/mod.rs @@ -86,17 +86,17 @@ mod dsp; pub use self::dsp::*; // Deprecated in ACLE 2.0 for the A profile but fully supported on the M and R profiles, says -// Section 5.4.9 of ACLE. +// Section 5.4.9 of ACLE. We'll expose these for the A profile even if deprecated #[cfg(any( - // v7-R - target_feature = "rclass", + // v7-A, v7-R + all(target_feature = "v6", not(target_feature = "mclass")), // v7E-M all(target_feature = "mclass", target_feature = "dsp") ))] mod simd32; #[cfg(any( - target_feature = "rclass", + all(target_feature = "v6", not(target_feature = "mclass")), all(target_feature = "mclass", target_feature = "dsp") ))] pub use self::simd32::*;