diff options
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index eb784b4a2a..f23a782dd6 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -472,12 +472,6 @@ typedef union { #define NB_MMU_MODES 2 typedef struct CPUX86State { -#if TARGET_LONG_BITS > HOST_LONG_BITS - /* temporaries if we cannot store them in host registers */ - target_ulong t0, t1, t2; -#endif - target_ulong t3; - /* standard registers */ target_ulong regs[CPU_NB_REGS]; target_ulong eip; @@ -526,6 +520,7 @@ typedef struct CPUX86State { XMMReg xmm_regs[CPU_NB_REGS]; XMMReg xmm_t0; MMXReg mmx_t0; + target_ulong cc_tmp; /* temporary for rcr/rcl */ /* sysenter registers */ uint32_t sysenter_cs; |