summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--target-alpha/cpu.h6
1 files changed, 6 insertions, 0 deletions
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;