target/nios2: Remove CPU_INTERRUPT_NMI
This interrupt bit is never set, so testing it in nios2_cpu_has_work is pointless. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220421151735.31996-41-richard.henderson@linaro.org>
This commit is contained in:
parent
2de70d2d96
commit
e8d12542ee
@ -36,7 +36,7 @@ static void nios2_cpu_set_pc(CPUState *cs, vaddr value)
|
||||
|
||||
static bool nios2_cpu_has_work(CPUState *cs)
|
||||
{
|
||||
return cs->interrupt_request & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI);
|
||||
return cs->interrupt_request & CPU_INTERRUPT_HARD;
|
||||
}
|
||||
|
||||
static void nios2_cpu_reset(DeviceState *dev)
|
||||
|
@ -177,8 +177,6 @@ FIELD(CR_TLBMISC, EE, 24, 1)
|
||||
#define EXCP_MPUI 16
|
||||
#define EXCP_MPUD 17
|
||||
|
||||
#define CPU_INTERRUPT_NMI CPU_INTERRUPT_TGT_EXT_3
|
||||
|
||||
struct CPUArchState {
|
||||
uint32_t regs[NUM_GP_REGS];
|
||||
uint32_t ctrl[NUM_CR_REGS];
|
||||
|
Loading…
Reference in New Issue
Block a user