File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 6
6
//! [arm_ref]: http://infocenter.arm.com/help/topic/com.arm.doc.ihi0073a/IHI0073A_arm_neon_intrinsics_ref.pdf
7
7
//! [arm_dat]: https://developer.arm.com/technologies/neon/intrinsics
8
8
9
+ #![ cfg_attr(
10
+ all( target_arch = "aarch64" , target_abi = "softfloat" ) ,
11
+ // Just allow the warning: anyone soundly using the intrinsics has to enable
12
+ // the target feature, and that will generate a warning for them.
13
+ allow( aarch64_softfloat_neon)
14
+ ) ]
15
+
9
16
mod mte;
10
17
#[ unstable( feature = "stdarch_aarch64_mte" , issue = "129010" ) ]
11
18
pub use self :: mte:: * ;
Original file line number Diff line number Diff line change 47
47
//!
48
48
//! - [ACLE Q2 2018](https://developer.arm.com/docs/101028/latest)
49
49
50
+ #![ cfg_attr(
51
+ all( target_arch = "aarch64" , target_abi = "softfloat" ) ,
52
+ // Just allow the warning: anyone soundly using the intrinsics has to enable
53
+ // the target feature, and that will generate a warning for them.
54
+ allow( aarch64_softfloat_neon)
55
+ ) ]
50
56
// Only for 'neon' submodule
51
57
#![ allow( non_camel_case_types) ]
52
58
You can’t perform that action at this time.
0 commit comments