Browse Source

Fix rust-analyzer

luojia65 4 years ago
parent
commit
9161bd4eeb
1 changed files with 13 additions and 4 deletions
  1. 13 4
      rustsbi/src/privileged.rs

+ 13 - 4
rustsbi/src/privileged.rs

@@ -24,8 +24,17 @@
 /// ```
 #[inline]
 pub unsafe fn enter_privileged(mhartid: usize, dtb_pa: usize) -> ! {
-    asm!("
-        csrrw   sp, mscratch, sp
-        mret
-    ", in("a0") mhartid, in("a1") dtb_pa, options(nomem, noreturn))
+    match () {
+        #[cfg(riscv)]
+        () => asm!("
+            csrrw   sp, mscratch, sp
+            mret
+        ", in("a0") mhartid, in("a1") dtb_pa, options(nomem, noreturn)),
+        #[cfg(not(riscv))]
+        () => {
+            drop(mhartid);
+            drop(dtb_pa);
+            unimplemented!("not RISC-V instruction set architecture")
+        }
+    }
 }