3
3
#[ macro_use]
4
4
mod macros;
5
5
6
- #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , dox ) ) ]
6
+ #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , doc ) ) ]
7
7
mod acle;
8
8
9
9
mod simd;
@@ -14,7 +14,7 @@ pub mod arch {
14
14
/// Platform-specific intrinsics for the `x86` platform.
15
15
///
16
16
/// See the [module documentation](../index.html) for more details.
17
- #[ cfg( any( target_arch = "x86" , dox ) ) ]
17
+ #[ cfg( any( target_arch = "x86" , doc ) ) ]
18
18
#[ doc( cfg( target_arch = "x86" ) ) ]
19
19
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
20
20
pub mod x86 {
@@ -25,7 +25,7 @@ pub mod arch {
25
25
/// Platform-specific intrinsics for the `x86_64` platform.
26
26
///
27
27
/// 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 ) ) ]
29
29
#[ doc( cfg( target_arch = "x86_64" ) ) ]
30
30
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
31
31
pub mod x86_64 {
@@ -38,7 +38,7 @@ pub mod arch {
38
38
/// Platform-specific intrinsics for the `arm` platform.
39
39
///
40
40
/// See the [module documentation](../index.html) for more details.
41
- #[ cfg( any( target_arch = "arm" , dox ) ) ]
41
+ #[ cfg( any( target_arch = "arm" , doc ) ) ]
42
42
#[ doc( cfg( target_arch = "arm" ) ) ]
43
43
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
44
44
pub mod arm {
@@ -48,7 +48,7 @@ pub mod arch {
48
48
/// Platform-specific intrinsics for the `aarch64` platform.
49
49
///
50
50
/// See the [module documentation](../index.html) for more details.
51
- #[ cfg( any( target_arch = "aarch64" , dox ) ) ]
51
+ #[ cfg( any( target_arch = "aarch64" , doc ) ) ]
52
52
#[ doc( cfg( target_arch = "aarch64" ) ) ]
53
53
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
54
54
pub mod aarch64 {
@@ -161,7 +161,7 @@ pub mod arch {
161
161
/// > `-Ctarget-feature=+simd128,+unimplemented-simd128`. This second
162
162
/// > feature enables more recent instructions implemented in LLVM which
163
163
/// > 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 ) ) ]
165
165
#[ doc( cfg( target_arch = "wasm32" ) ) ]
166
166
#[ stable( feature = "simd_wasm32" , since = "1.33.0" ) ]
167
167
pub mod wasm32 {
@@ -172,7 +172,7 @@ pub mod arch {
172
172
/// Platform-specific intrinsics for the `mips` platform.
173
173
///
174
174
/// See the [module documentation](../index.html) for more details.
175
- #[ cfg( any( target_arch = "mips" , dox ) ) ]
175
+ #[ cfg( any( target_arch = "mips" , doc ) ) ]
176
176
#[ doc( cfg( target_arch = "mips" ) ) ]
177
177
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
178
178
pub mod mips {
@@ -182,7 +182,7 @@ pub mod arch {
182
182
/// Platform-specific intrinsics for the `mips64` platform.
183
183
///
184
184
/// See the [module documentation](../index.html) for more details.
185
- #[ cfg( any( target_arch = "mips64" , dox ) ) ]
185
+ #[ cfg( any( target_arch = "mips64" , doc ) ) ]
186
186
#[ doc( cfg( target_arch = "mips64" ) ) ]
187
187
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
188
188
pub mod mips64 {
@@ -192,7 +192,7 @@ pub mod arch {
192
192
/// Platform-specific intrinsics for the `PowerPC` platform.
193
193
///
194
194
/// See the [module documentation](../index.html) for more details.
195
- #[ cfg( any( target_arch = "powerpc" , dox ) ) ]
195
+ #[ cfg( any( target_arch = "powerpc" , doc ) ) ]
196
196
#[ doc( cfg( target_arch = "powerpc" ) ) ]
197
197
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
198
198
pub mod powerpc {
@@ -202,7 +202,7 @@ pub mod arch {
202
202
/// Platform-specific intrinsics for the `PowerPC64` platform.
203
203
///
204
204
/// See the [module documentation](../index.html) for more details.
205
- #[ cfg( any( target_arch = "powerpc64" , dox ) ) ]
205
+ #[ cfg( any( target_arch = "powerpc64" , doc ) ) ]
206
206
#[ doc( cfg( target_arch = "powerpc64" ) ) ]
207
207
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
208
208
pub mod powerpc64 {
@@ -212,7 +212,7 @@ pub mod arch {
212
212
/// Platform-specific intrinsics for the `NVPTX` platform.
213
213
///
214
214
/// 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 ) ) ]
216
216
#[ doc( cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" ) ) ) ]
217
217
#[ unstable( feature = "stdsimd" , issue = "27731" ) ]
218
218
pub mod nvptx {
@@ -222,36 +222,36 @@ pub mod arch {
222
222
223
223
mod simd_llvm;
224
224
225
- #[ cfg( any( target_arch = "x86" , target_arch = "x86_64" , dox ) ) ]
225
+ #[ cfg( any( target_arch = "x86" , target_arch = "x86_64" , doc ) ) ]
226
226
#[ doc( cfg( any( target_arch = "x86" , target_arch = "x86_64" ) ) ) ]
227
227
mod x86;
228
- #[ cfg( any( target_arch = "x86_64" , dox ) ) ]
228
+ #[ cfg( any( target_arch = "x86_64" , doc ) ) ]
229
229
#[ doc( cfg( target_arch = "x86_64" ) ) ]
230
230
mod x86_64;
231
231
232
- #[ cfg( any( target_arch = "aarch64" , dox ) ) ]
232
+ #[ cfg( any( target_arch = "aarch64" , doc ) ) ]
233
233
#[ doc( cfg( target_arch = "aarch64" ) ) ]
234
234
mod aarch64;
235
- #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , dox ) ) ]
235
+ #[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , doc ) ) ]
236
236
#[ doc( cfg( any( target_arch = "arm" , target_arch = "aarch64" ) ) ) ]
237
237
mod arm;
238
238
239
- #[ cfg( any( target_arch = "wasm32" , dox ) ) ]
239
+ #[ cfg( any( target_arch = "wasm32" , doc ) ) ]
240
240
#[ doc( cfg( target_arch = "wasm32" ) ) ]
241
241
mod wasm32;
242
242
243
- #[ cfg( any( target_arch = "mips" , target_arch = "mips64" , dox ) ) ]
243
+ #[ cfg( any( target_arch = "mips" , target_arch = "mips64" , doc ) ) ]
244
244
#[ doc( cfg( any( target_arch = "mips" , target_arch = "mips64" ) ) ) ]
245
245
mod mips;
246
246
247
- #[ cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" , dox ) ) ]
247
+ #[ cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" , doc ) ) ]
248
248
#[ doc( cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" ) ) ) ]
249
249
mod powerpc;
250
250
251
- #[ cfg( any( target_arch = "powerpc64" , dox ) ) ]
251
+ #[ cfg( any( target_arch = "powerpc64" , doc ) ) ]
252
252
#[ doc( cfg( target_arch = "powerpc64" ) ) ]
253
253
mod powerpc64;
254
254
255
- #[ cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" , dox ) ) ]
255
+ #[ cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" , doc ) ) ]
256
256
#[ doc( cfg( any( target_arch = "nvptx" , target_arch = "nvptx64" ) ) ) ]
257
257
mod nvptx;
0 commit comments