File tree 2 files changed +22
-2
lines changed
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 12
12
repr_simd,
13
13
simd_ffi,
14
14
staged_api,
15
- stdsimd,
16
15
strict_provenance,
17
16
ptr_metadata
18
17
) ]
18
+ #![ cfg_attr(
19
+ all(
20
+ any( target_arch = "aarch64" , target_arch = "arm" , ) ,
21
+ any(
22
+ all( target_feature = "v6" , not( target_feature = "mclass" ) ) ,
23
+ all( target_feature = "mclass" , target_feature = "dsp" ) ,
24
+ )
25
+ ) ,
26
+ feature( stdarch_arm_dsp)
27
+ ) ]
28
+ #![ cfg_attr(
29
+ any(
30
+ target_arch = "aarch64" ,
31
+ all( target_arch = "arm" , target_feature = "v7" ) ,
32
+ ) ,
33
+ feature( stdarch_arm_dsp)
34
+ ) ]
35
+ #![ cfg_attr(
36
+ any( target_arch = "powerpc" , target_arch = "powerpc64" ) ,
37
+ feature( stdarch_powerpc)
38
+ ) ]
19
39
#![ warn( missing_docs, clippy:: missing_inline_in_public_items) ] // basically all items, really
20
40
#![ deny( unsafe_op_in_unsafe_fn, clippy:: undocumented_unsafe_blocks) ]
21
41
#![ allow( internal_features) ]
Original file line number Diff line number Diff line change 1
- #![ feature( stdsimd , powerpc_target_feature) ]
1
+ #![ feature( powerpc_target_feature) ]
2
2
3
3
pub mod array;
4
4
You can’t perform that action at this time.
0 commit comments