Skip to content

Commit 7b54614

Browse files
committed
Expect Broken CI: Part 2
Because the `target_feature` attribute is missing, no assumption should be made while processing `assert_instr` (`.insn` should show up in this case).
1 parent 3292cd0 commit 7b54614

File tree

1 file changed

+1
-2
lines changed
  • crates/core_arch/src/riscv64

1 file changed

+1
-2
lines changed

crates/core_arch/src/riscv64/zk.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,7 @@ pub fn aes64ks2(rs1: u64, rs2: u64) -> u64 {
183183
/// Version: v1.0.1
184184
///
185185
/// Section: 3.9
186-
#[target_feature(enable = "zkne", enable = "zknd")]
187-
#[cfg_attr(test, assert_instr(aes64ks2))] // intentionally broken
186+
#[cfg_attr(test, assert_instr(aes64im))]
188187
#[inline]
189188
#[unstable(feature = "riscv_ext_intrinsics", issue = "114544")]
190189
pub fn aes64im(rs1: u64) -> u64 {

0 commit comments

Comments
 (0)