33#[ macro_use]
44mod macros;
55
6- #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , dox ) ) ]
6+ #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , doc ) ) ]
77mod acle;
88
99mod simd;
@@ -14,7 +14,7 @@ pub mod arch {
1414 /// Platform-specific intrinsics for the `x86` platform.
1515 ///
1616 /// See the [module documentation](../index.html) for more details.
17- #[ cfg( any( target_arch = "x86" , dox ) ) ]
17+ #[ cfg( any( target_arch = "x86" , doc ) ) ]
1818 #[ doc( cfg( target_arch = "x86" ) ) ]
1919 #[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
2020 pub mod x86 {
@@ -25,7 +25,7 @@ pub mod arch {
2525 /// Platform-specific intrinsics for the `x86_64` platform.
2626 ///
2727 /// See the [module documentation](../index.html) for more details.
28- #[ cfg( any( target_arch = "x86_64" , dox ) ) ]
28+ #[ cfg( any( target_arch = "x86_64" , doc ) ) ]
2929 #[ doc( cfg( target_arch = "x86_64" ) ) ]
3030 #[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
3131 pub mod x86_64 {
@@ -38,7 +38,7 @@ pub mod arch {
3838 /// Platform-specific intrinsics for the `arm` platform.
3939 ///
4040 /// See the [module documentation](../index.html) for more details.
41- #[ cfg( any( target_arch = "arm" , dox ) ) ]
41+ #[ cfg( any( target_arch = "arm" , doc ) ) ]
4242 #[ doc( cfg( target_arch = "arm" ) ) ]
4343 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
4444 pub mod arm {
@@ -48,7 +48,7 @@ pub mod arch {
4848 /// Platform-specific intrinsics for the `aarch64` platform.
4949 ///
5050 /// See the [module documentation](../index.html) for more details.
51- #[ cfg( any( target_arch = "aarch64" , dox ) ) ]
51+ #[ cfg( any( target_arch = "aarch64" , doc ) ) ]
5252 #[ doc( cfg( target_arch = "aarch64" ) ) ]
5353 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
5454 pub mod aarch64 {
@@ -161,7 +161,7 @@ pub mod arch {
161161 /// > `-Ctarget-feature=+simd128,+unimplemented-simd128`. This second
162162 /// > feature enables more recent instructions implemented in LLVM which
163163 /// > haven't always had enough time to make their way to runtimes.
164- #[ cfg( any( target_arch = "wasm32" , dox ) ) ]
164+ #[ cfg( any( target_arch = "wasm32" , doc ) ) ]
165165 #[ doc( cfg( target_arch = "wasm32" ) ) ]
166166 #[ stable( feature = "simd_wasm32" , since = "1.33.0" ) ]
167167 pub mod wasm32 {
@@ -172,7 +172,7 @@ pub mod arch {
172172 /// Platform-specific intrinsics for the `mips` platform.
173173 ///
174174 /// See the [module documentation](../index.html) for more details.
175- #[ cfg( any( target_arch = "mips" , dox ) ) ]
175+ #[ cfg( any( target_arch = "mips" , doc ) ) ]
176176 #[ doc( cfg( target_arch = "mips" ) ) ]
177177 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
178178 pub mod mips {
@@ -182,7 +182,7 @@ pub mod arch {
182182 /// Platform-specific intrinsics for the `mips64` platform.
183183 ///
184184 /// See the [module documentation](../index.html) for more details.
185- #[ cfg( any( target_arch = "mips64" , dox ) ) ]
185+ #[ cfg( any( target_arch = "mips64" , doc ) ) ]
186186 #[ doc( cfg( target_arch = "mips64" ) ) ]
187187 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
188188 pub mod mips64 {
@@ -192,7 +192,7 @@ pub mod arch {
192192 /// Platform-specific intrinsics for the `PowerPC` platform.
193193 ///
194194 /// See the [module documentation](../index.html) for more details.
195- #[ cfg( any( target_arch = "powerpc" , dox ) ) ]
195+ #[ cfg( any( target_arch = "powerpc" , doc ) ) ]
196196 #[ doc( cfg( target_arch = "powerpc" ) ) ]
197197 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
198198 pub mod powerpc {
@@ -202,7 +202,7 @@ pub mod arch {
202202 /// Platform-specific intrinsics for the `PowerPC64` platform.
203203 ///
204204 /// See the [module documentation](../index.html) for more details.
205- #[ cfg( any( target_arch = "powerpc64" , dox ) ) ]
205+ #[ cfg( any( target_arch = "powerpc64" , doc ) ) ]
206206 #[ doc( cfg( target_arch = "powerpc64" ) ) ]
207207 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
208208 pub mod powerpc64 {
@@ -212,7 +212,7 @@ pub mod arch {
212212 /// Platform-specific intrinsics for the `NVPTX` platform.
213213 ///
214214 /// See the [module documentation](../index.html) for more details.
215- #[ cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" , dox ) ) ]
215+ #[ cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" , doc ) ) ]
216216 #[ doc( cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" ) ) ) ]
217217 #[ unstable( feature = "stdsimd" , issue = "27731" ) ]
218218 pub mod nvptx {
@@ -222,36 +222,36 @@ pub mod arch {
222222
223223mod simd_llvm;
224224
225- #[ cfg( any( target_arch = "x86" , target_arch = "x86_64" , dox ) ) ]
225+ #[ cfg( any( target_arch = "x86" , target_arch = "x86_64" , doc ) ) ]
226226#[ doc( cfg( any( target_arch = "x86" , target_arch = "x86_64" ) ) ) ]
227227mod x86;
228- #[ cfg( any( target_arch = "x86_64" , dox ) ) ]
228+ #[ cfg( any( target_arch = "x86_64" , doc ) ) ]
229229#[ doc( cfg( target_arch = "x86_64" ) ) ]
230230mod x86_64;
231231
232- #[ cfg( any( target_arch = "aarch64" , dox ) ) ]
232+ #[ cfg( any( target_arch = "aarch64" , doc ) ) ]
233233#[ doc( cfg( target_arch = "aarch64" ) ) ]
234234mod aarch64;
235- #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , dox ) ) ]
235+ #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , doc ) ) ]
236236#[ doc( cfg( any( target_arch = "arm" , target_arch = "aarch64" ) ) ) ]
237237mod arm;
238238
239- #[ cfg( any( target_arch = "wasm32" , dox ) ) ]
239+ #[ cfg( any( target_arch = "wasm32" , doc ) ) ]
240240#[ doc( cfg( target_arch = "wasm32" ) ) ]
241241mod wasm32;
242242
243- #[ cfg( any( target_arch = "mips" , target_arch = "mips64" , dox ) ) ]
243+ #[ cfg( any( target_arch = "mips" , target_arch = "mips64" , doc ) ) ]
244244#[ doc( cfg( any( target_arch = "mips" , target_arch = "mips64" ) ) ) ]
245245mod mips;
246246
247- #[ cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" , dox ) ) ]
247+ #[ cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" , doc ) ) ]
248248#[ doc( cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" ) ) ) ]
249249mod powerpc;
250250
251- #[ cfg( any( target_arch = "powerpc64" , dox ) ) ]
251+ #[ cfg( any( target_arch = "powerpc64" , doc ) ) ]
252252#[ doc( cfg( target_arch = "powerpc64" ) ) ]
253253mod powerpc64;
254254
255- #[ cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" , dox ) ) ]
255+ #[ cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" , doc ) ) ]
256256#[ doc( cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" ) ) ) ]
257257mod nvptx;
0 commit comments