瀏覽代碼

fix(prototyper): remove unused code

Woshiluo Luo 6 月之前
父節點
當前提交
3c8980f484
共有 2 個文件被更改,包括 1 次插入5 次删除
  1. 1 1
      prototyper/src/main.rs
  2. 0 4
      prototyper/src/rfence.rs

+ 1 - 1
prototyper/src/main.rs

@@ -1,4 +1,4 @@
-#![feature(naked_functions, asm_const)]
+#![feature(naked_functions)]
 #![no_std]
 #![no_main]
 

+ 0 - 4
prototyper/src/rfence.rs

@@ -147,10 +147,6 @@ fn remote_fence_process(rfence_ctx: RFenceCTX, hart_mask: HartMask) -> SbiRet {
         .unwrap()
         .send_ipi_by_fence(hart_mask, rfence_ctx);
 
-    if hart_mask.has_bit(current_hartid()) {
-        crate::trap::rfence_handler();
-    }
-
     sbi_ret
 }