File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 22
22
//!
23
23
//! The original `lse.S` has some truly horrifying code that expects to be compiled multiple times with different constants.
24
24
//! We do something similar, but with macro arguments.
25
+ #![ cfg_attr( feature = "c" , allow( unused_macros) ) ] // avoid putting the macros into a submodule
25
26
26
27
// We don't do runtime dispatch so we don't have to worry about the `__aarch64_have_lse_atomics` global ctor.
27
28
Original file line number Diff line number Diff line change @@ -57,11 +57,7 @@ pub mod mem;
57
57
#[ cfg( target_arch = "arm" ) ]
58
58
pub mod arm;
59
59
60
- #[ cfg( all(
61
- target_arch = "aarch64" ,
62
- not( feature = "no-asm" ) ,
63
- not( feature = "optimized-c" )
64
- ) ) ]
60
+ #[ cfg( all( target_arch = "aarch64" , not( feature = "no-asm" ) , ) ) ]
65
61
pub mod aarch64;
66
62
67
63
#[ cfg( all(
You can’t perform that action at this time.
0 commit comments