File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 2222//!
2323//! The original `lse.S` has some truly horrifying code that expects to be compiled multiple times with different constants.
2424//! We do something similar, but with macro arguments.
25+ #![ cfg_attr( feature = "c" , allow( unused_macros) ) ] // avoid putting the macros into a submodule
2526
2627// We don't do runtime dispatch so we don't have to worry about the `__aarch64_have_lse_atomics` global ctor.
2728
Original file line number Diff line number Diff line change @@ -57,11 +57,7 @@ pub mod mem;
5757#[ cfg( target_arch = "arm" ) ]
5858pub mod arm;
5959
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" ) , ) ) ]
6561pub mod aarch64;
6662
6763#[ cfg( all(
You can’t perform that action at this time.
0 commit comments