diff options
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index b7fac84683..7306cbd3f2 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -4126,7 +4126,7 @@ void helper_vmrun(target_ulong addr) case SVM_EVTINJ_TYPE_INTR: env->exception_index = vector; env->error_code = event_inj_err; - env->exception_is_int = 1; + env->exception_is_int = 0; env->exception_next_eip = -1; if (loglevel & CPU_LOG_TB_IN_ASM) fprintf(logfile, "INTR"); @@ -4134,7 +4134,7 @@ void helper_vmrun(target_ulong addr) case SVM_EVTINJ_TYPE_NMI: env->exception_index = vector; env->error_code = event_inj_err; - env->exception_is_int = 1; + env->exception_is_int = 0; env->exception_next_eip = EIP; if (loglevel & CPU_LOG_TB_IN_ASM) fprintf(logfile, "NMI"); |