File tree Expand file tree Collapse file tree
crates/core_arch/src/aarch64 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ mod neon;
2626pub use self :: neon:: * ;
2727
2828// The rest of `core_arch::aarch64` is available on `arm64ec` but SVE is not supported on `arm64ec`.
29- #[ cfg( any( target_arch = "aarch64" , doc) ) ]
29+ #[ cfg( any( all ( target_arch = "aarch64" , target_endian = "little" ) , doc) ) ]
3030mod sve;
31- #[ cfg( any( target_arch = "aarch64" , doc) ) ]
31+ #[ cfg( any( all ( target_arch = "aarch64" , target_endian = "little" ) , doc) ) ]
3232#[ unstable( feature = "stdarch_aarch64_sve" , issue = "145052" ) ]
3333pub use self :: sve:: * ;
3434
3535// The rest of `core_arch::aarch64` is available on `arm64ec` but SVE is not supported on `arm64ec`.
36- #[ cfg( any( target_arch = "aarch64" , doc) ) ]
36+ #[ cfg( any( all ( target_arch = "aarch64" , target_endian = "little" ) , doc) ) ]
3737mod sve2;
38- #[ cfg( any( target_arch = "aarch64" , doc) ) ]
38+ #[ cfg( any( all ( target_arch = "aarch64" , target_endian = "little" ) , doc) ) ]
3939#[ unstable( feature = "stdarch_aarch64_sve" , issue = "145052" ) ]
4040pub use self :: sve2:: * ;
4141
You can’t perform that action at this time.
0 commit comments