File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -146,24 +146,31 @@ pub mod arch {
146
146
mod simd_llvm;
147
147
148
148
#[ cfg( any( target_arch = "x86" , target_arch = "x86_64" , dox) ) ]
149
+ #[ doc( cfg( any( target_arch = "x86" , target_arch = "x86_64" ) ) ) ]
149
150
mod x86;
150
151
#[ cfg( any( target_arch = "x86_64" , dox) ) ]
152
+ #[ doc( cfg( target_arch = "x86_64" ) ) ]
151
153
mod x86_64;
152
154
153
155
#[ cfg( any( target_arch = "aarch64" , dox) ) ]
156
+ #[ doc( cfg( target_arch = "aarch64" ) ) ]
154
157
mod aarch64;
155
158
#[ cfg( any( target_arch = "arm" , target_arch = "aarch64" , dox) ) ]
159
+ #[ doc( cfg( any( target_arch = "arm" , target_arch = "aarch64" ) ) ) ]
156
160
mod arm;
157
161
#[ cfg( target_arch = "wasm32" ) ]
158
162
mod wasm32;
159
163
160
164
#[ cfg( any( target_arch = "mips" , target_arch = "mips64" , dox) ) ]
165
+ #[ doc( cfg( any( target_arch = "mips" , target_arch = "mips64" ) ) ) ]
161
166
mod mips;
162
167
163
168
#[ cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" , dox) ) ]
169
+ #[ doc( cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" ) ) ) ]
164
170
mod powerpc;
165
171
166
172
#[ cfg( any( target_arch = "powerpc64" , dox) ) ]
173
+ #[ doc( cfg( target_arch = "powerpc64" ) ) ]
167
174
mod powerpc64;
168
175
169
176
mod nvptx;
You can’t perform that action at this time.
0 commit comments