about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect/src
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-02-14 21:52:41 +0100
committergnzlbg <gnzlbg@users.noreply.github.com>2019-02-16 09:34:16 +0100
commit049071b50f327d28145356f4ddf89470e3b244f7 (patch)
treeecd37667f44a34cf23d867e40c1e02fdebf15fc3 /library/stdarch/crates/std_detect/src
parent48971af4bdf33ceac45f5afcccdef32cf9fbc75c (diff)
downloadrust-049071b50f327d28145356f4ddf89470e3b244f7.tar.gz
rust-049071b50f327d28145356f4ddf89470e3b244f7.zip
Try to fix upstream
Diffstat (limited to 'library/stdarch/crates/std_detect/src')
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs2
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/arm.rs2
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/mips.rs2
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/mips64.rs2
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs2
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs2
-rw-r--r--library/stdarch/crates/std_detect/src/detect/arch/x86.rs2
7 files changed, 7 insertions, 7 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs b/library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs
index 3270641eb34..ebae2bd2854 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/aarch64.rs
@@ -3,7 +3,7 @@
 /// Checks if `aarch64` feature is enabled.
 #[macro_export]
 #[unstable(feature = "stdsimd", issue = "27731")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_aarch64_feature_detected {
     ("neon") => {
         // FIXME: this should be removed once we rename Aarch64 neon to asimd
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/arm.rs b/library/stdarch/crates/std_detect/src/detect/arch/arm.rs
index ebed1f757e3..b2626bf2923 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/arm.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/arm.rs
@@ -3,7 +3,7 @@
 /// Checks if `arm` feature is enabled.
 #[macro_export]
 #[unstable(feature = "stdsimd", issue = "27731")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_arm_feature_detected {
     ("neon") => {
         cfg!(target_feature = "neon") ||
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/mips.rs b/library/stdarch/crates/std_detect/src/detect/arch/mips.rs
index 969d6d05dc5..f4381b811cd 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/mips.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/mips.rs
@@ -3,7 +3,7 @@
 /// Checks if `mips` feature is enabled.
 #[macro_export]
 #[unstable(feature = "stdsimd", issue = "27731")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_mips_feature_detected {
     ("msa") => {
         cfg!(target_feature = "msa") ||
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/mips64.rs b/library/stdarch/crates/std_detect/src/detect/arch/mips64.rs
index d421595c9cd..2663bc68ba9 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/mips64.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/mips64.rs
@@ -3,7 +3,7 @@
 /// Checks if `mips64` feature is enabled.
 #[macro_export]
 #[unstable(feature = "stdsimd", issue = "27731")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_mips64_feature_detected {
     ("msa") => {
         cfg!(target_feature = "msa") ||
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs b/library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs
index 9d65437e0ba..a342dc1aacc 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/powerpc.rs
@@ -3,7 +3,7 @@
 /// Checks if `powerpc` feature is enabled.
 #[macro_export]
 #[unstable(feature = "stdsimd", issue = "27731")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_powerpc_feature_detected {
     ("altivec") => {
         cfg!(target_feature = "altivec") ||
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs b/library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs
index 4514100907c..2e82c569252 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/powerpc64.rs
@@ -3,7 +3,7 @@
 /// Checks if `powerpc64` feature is enabled.
 #[macro_export]
 #[unstable(feature = "stdsimd", issue = "27731")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_powerpc64_feature_detected {
     ("altivec") => {
         cfg!(target_feature = "altivec") ||
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs
index 953bf29d680..6a3e11de3df 100644
--- a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs
+++ b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs
@@ -79,7 +79,7 @@
 /// [docs]: https://software.intel.com/sites/landingpage/IntrinsicsGuide
 #[macro_export]
 #[stable(feature = "simd_x86", since = "1.27.0")]
-#[allow_internal_unstable(stdsimd_internal)]
+#[allow_internal_unstable(stdsimd_internal,stdsimd)]
 macro_rules! is_x86_feature_detected {
     ("aes") => {
         cfg!(target_feature = "aes") || $crate::detect::check_for(