From: j_mayer Date: Thu, 5 Apr 2007 21:12:28 +0000 (+0000) Subject: Fix alpha target compilation on 32 bits hosts. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bf9525e9d8e8a8f56d350f7e7fec33bd9eacb5dd;p=qemu.git Fix alpha target compilation on 32 bits hosts. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2608 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index ca12105f20..a77af17ef3 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -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;