diff options
-rw-r--r-- | target-mips/op_helper.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index e3ab05cbb0..d833d78b4f 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -38,10 +38,9 @@ static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env, int error_code, uintptr_t pc) { -#if 1 - if (exception < 0x100) + if (exception < EXCP_SC) { qemu_log("%s: %d %d\n", __func__, exception, error_code); -#endif + } env->exception_index = exception; env->error_code = error_code; |