Fix alpha target compilation on 32 bits hosts.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2608 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
j_mayer 2007-04-05 21:12:28 +00:00
parent cf6c1b169c
commit bf9525e9d8
1 changed files with 6 additions and 0 deletions

View File

@ -273,6 +273,12 @@ struct CPUAlphaState {
uint64_t unique;
int saved_mode; /* Used for HW_LD / HW_ST */
#if TARGET_LONG_BITS > HOST_LONG_BITS
/* temporary fixed-point registers
* used to emulate 64 bits target on 32 bits hosts
*/
target_ulong t0, t1, t2;
#endif
/* */
double ft0, ft1, ft2;