File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/core_arch/src/riscv64 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ pub fn aes64dsm(rs1: u64, rs2: u64) -> u64 {
133133/// # Note
134134///
135135/// The `RNUM` parameter is expected to be a constant value inside the range of `0..=10`.
136- #[ target_feature( enable = "zkne" , enable = "zknd" ) ]
136+ // #[target_feature(enable = "zkne", enable = "zknd")] // TODO: zkne_or_zknd
137137#[ rustc_legacy_const_generics( 1 ) ]
138138#[ cfg_attr( test, assert_instr( aes64ks1i, RNUM = 0 ) ) ]
139139#[ inline]
@@ -155,7 +155,7 @@ pub fn aes64ks1i<const RNUM: u8>(rs1: u64) -> u64 {
155155/// Version: v1.0.1
156156///
157157/// Section: 3.11
158- #[ target_feature( enable = "zkne" , enable = "zknd" ) ]
158+ // #[target_feature(enable = "zkne", enable = "zknd")] // TODO: zkne_or_zknd
159159#[ cfg_attr( test, assert_instr( aes64ks2) ) ]
160160#[ inline]
161161#[ unstable( feature = "riscv_ext_intrinsics" , issue = "114544" ) ]
@@ -176,7 +176,7 @@ pub fn aes64ks2(rs1: u64, rs2: u64) -> u64 {
176176/// Version: v1.0.1
177177///
178178/// Section: 3.9
179- #[ target_feature( enable = "zkne" , enable = "zknd" ) ]
179+ // #[target_feature(enable = "zkne", enable = "zknd")] // TODO: zkne_or_zknd
180180#[ cfg_attr( test, assert_instr( aes64im) ) ]
181181#[ inline]
182182#[ unstable( feature = "riscv_ext_intrinsics" , issue = "114544" ) ]
You can’t perform that action at this time.
0 commit comments