summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-14 18:45:52 +0000
committerj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-14 18:45:52 +0000
commit57c26279c7bdef3cb181ea0afbd062a87d4ed6a0 (patch)
tree7577cd3c7e3e1c9bc3018bd6e4f5fd931f2e3ee9
parentd2fd1af76777687697674e7a49eeceac83907f3e (diff)
downloadfocaccia-qemu-57c26279c7bdef3cb181ea0afbd062a87d4ed6a0.tar.gz
focaccia-qemu-57c26279c7bdef3cb181ea0afbd062a87d4ed6a0.zip
Fix PowerPC targets compilation on 32 bits hosts:
now that the SPE extension is available for all targets,
 we always need to have some 64 bits temporary registers.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3647 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--target-ppc/cpu.h6
-rw-r--r--target-ppc/exec.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index 7589ba2159..bb50c1df66 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -520,11 +520,11 @@ struct CPUPPCState {
     /* First are the most commonly used resources
      * during translated code execution
      */
-#if TARGET_GPR_BITS > HOST_LONG_BITS
+#if (HOST_LONG_BITS == 32)
     /* temporary fixed-point registers
-     * used to emulate 64 bits target on 32 bits hosts
+     * used to emulate 64 bits registers on 32 bits hosts
      */
-    ppc_gpr_t t0, t1, t2;
+    uint64_t t0, t1, t2;
 #endif
     ppc_avr_t avr0, avr1, avr2;
 
diff --git a/target-ppc/exec.h b/target-ppc/exec.h
index f561357044..beaa39ab04 100644
--- a/target-ppc/exec.h
+++ b/target-ppc/exec.h
@@ -42,8 +42,8 @@ register unsigned long T0 asm(AREG1);
 register unsigned long T1 asm(AREG2);
 register unsigned long T2 asm(AREG3);
 #endif
-/* We may, sometime, need 64 bits registers on 32 bits target */
-#if TARGET_GPR_BITS > HOST_LONG_BITS
+/* We may, sometime, need 64 bits registers on 32 bits targets */
+#if (HOST_LONG_BITS == 32)
 /* no registers can be used */
 #define T0_64 (env->t0)
 #define T1_64 (env->t1)