4
0
Román Cárdenas 1 жил өмнө
parent
commit
89be0f4d1f
1 өөрчлөгдсөн 7 нэмэгдсэн , 9 устгасан
  1. 7 9
      riscv-rt/src/lib.rs

+ 7 - 9
riscv-rt/src/lib.rs

@@ -472,17 +472,15 @@ pub extern "C" fn start_trap_rust(trap_frame: *const TrapFrame) {
 
         if cause.is_exception() {
             ExceptionHandler(&*trap_frame)
-        } else {
-            if cause.code() < __INTERRUPTS.len() {
-                let h = &__INTERRUPTS[cause.code()];
-                if h.reserved == 0 {
-                    DefaultHandler();
-                } else {
-                    (h.handler)();
-                }
-            } else {
+        } else if cause.code() < __INTERRUPTS.len() {
+            let h = &__INTERRUPTS[cause.code()];
+            if h.reserved == 0 {
                 DefaultHandler();
+            } else {
+                (h.handler)();
             }
+        } else {
+            DefaultHandler();
         }
     }
 }