From b0425668082da8e6a78f4b4e10110cd825be74ea Mon Sep 17 00:00:00 2001 From: est31 Date: Fri, 22 Jun 2018 05:15:13 +0200 Subject: [PATCH] Remove stray inconsistent #[cfg] The cfg for the target is already covered a few lines below. This cfg meant that even with the dox feature enabled, no documentation for powerpc64 was generated except you were actually targetting the powerpc64 arch. --- library/stdarch/coresimd/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/stdarch/coresimd/mod.rs b/library/stdarch/coresimd/mod.rs index 5007ac30de8c..6fc312f420a5 100644 --- a/library/stdarch/coresimd/mod.rs +++ b/library/stdarch/coresimd/mod.rs @@ -134,7 +134,6 @@ pub mod arch { /// Platform-specific intrinsics for the `PowerPC64` platform. /// /// See the [module documentation](../index.html) for more details. - #[cfg(target_arch = "powerpc64")] #[cfg(any(target_arch = "powerpc64", dox))] #[doc(cfg(target_arch = "powerpc64"))] #[unstable(feature = "stdsimd", issue = "27731")]