diff options
-rw-r--r-- | cpu-defs.h | 2 | ||||
-rw-r--r-- | target-i386/machine.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/cpu-defs.h b/cpu-defs.h index 51dc436b4f..95068b5304 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -179,7 +179,7 @@ typedef struct CPUWatchpoint { \ /* Core interrupt code */ \ jmp_buf jmp_env; \ - int32_t exception_index; \ + int exception_index; \ \ CPUState *next_cpu; /* next CPU sharing TB cache */ \ int cpu_index; /* CPU index (informative) */ \ diff --git a/target-i386/machine.c b/target-i386/machine.c index 567e01ec6f..87704918be 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -454,7 +454,6 @@ static const VMStateDescription vmstate_cpu = { VMSTATE_UINT8_V(nmi_pending, CPUState, 11), VMSTATE_UINT8_V(has_error_code, CPUState, 11), VMSTATE_UINT32_V(sipi_vector, CPUState, 11), - VMSTATE_INT32_V(exception_index, CPUState, 11), /* MCE */ VMSTATE_UINT64_V(mcg_cap, CPUState, 10), VMSTATE_UINT64_V(mcg_status, CPUState, 10), |