From fd347fdb9026af8f2b15d362c1118cab46ffc2c9 Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Sat, 15 Dec 2018 11:47:10 +0800 Subject: [PATCH] [libcpu][risc-v] fix the rt_thread_switch_interrupt_flag issue --- libcpu/risc-v/e310/interrupt_gcc.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcpu/risc-v/e310/interrupt_gcc.S b/libcpu/risc-v/e310/interrupt_gcc.S index 297851d71e..1eac7af90a 100644 --- a/libcpu/risc-v/e310/interrupt_gcc.S +++ b/libcpu/risc-v/e310/interrupt_gcc.S @@ -69,9 +69,9 @@ trap_entry: /* need to switch new thread */ la s0, rt_thread_switch_interrupt_flag - LOAD s2, 0(s0) + lw s2, 0(s0) beqz s2, spurious_interrupt - STORE zero, 0(s0) + sw zero, 0(s0) csrr a0, mepc STORE a0, 0 * REGBYTES(sp)