File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 4
4
#[ stable( feature = "simd_arch" , since = "1.27.0" ) ]
5
5
pub use crate :: core_arch:: arch:: * ;
6
6
7
+ #[ cfg( bootstrap) ]
8
+ #[ allow( dead_code) ]
9
+ #[ unstable( feature = "sha512_sm_x86" , issue = "126624" ) ]
10
+ fn dummy ( ) {
11
+ // AArch64 also has a target feature named `sm4`, so we need `#![feature(sha512_sm_x86)]` in lib.rs
12
+ // But as the bootstrap compiler doesn't know about this feature yet, we need to convert it to a
13
+ // library feature until bootstrap gets bumped
14
+ }
15
+
7
16
/// Inline assembly.
8
17
///
9
18
/// Refer to [Rust By Example] for a usage guide and the [reference] for
Original file line number Diff line number Diff line change 260
260
#![ feature( powerpc_target_feature) ]
261
261
#![ feature( riscv_target_feature) ]
262
262
#![ feature( rtm_target_feature) ]
263
+ #![ feature( sha512_sm_x86) ]
263
264
#![ feature( sse4a_target_feature) ]
264
265
#![ feature( tbm_target_feature) ]
265
266
#![ feature( wasm_target_feature) ]
You can’t perform that action at this time.
0 commit comments