diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-20 22:39:17 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-20 22:39:17 +0000 |
commit | 0b7c1d897f010cf9f1848fa79db7d05273dfbf20 (patch) | |
tree | 6a43f2c6e08de7f523d34a1b9cd358bed1f921cd /tcg/ppc64/tcg-target.c | |
parent | a2a546b3fcd2db1f9c43962b03414bd0c4e85f69 (diff) | |
download | qemu-0b7c1d897f010cf9f1848fa79db7d05273dfbf20.zip qemu-0b7c1d897f010cf9f1848fa79db7d05273dfbf20.tar.gz qemu-0b7c1d897f010cf9f1848fa79db7d05273dfbf20.tar.bz2 |
Clear the upper 32 bits of addr_reg in TARGET_LONG_BITS == 32 case
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5032 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg/ppc64/tcg-target.c')
-rw-r--r-- | tcg/ppc64/tcg-target.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index 108132c..0ee551f 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -649,6 +649,9 @@ static void tcg_out_qemu_ld (TCGContext *s, const TCGArg *args, int opc) /* r0 = env->tlb_table[mem_index][index].addend + addr */ #else /* !CONFIG_SOFTMMU */ +#if TARGET_LONG_BITS == 32 + tcg_out_rld (s, RLDICL, addr_reg, addr_reg, 0, 32); +#endif r0 = addr_reg; #endif @@ -758,6 +761,9 @@ static void tcg_out_qemu_st (TCGContext *s, const TCGArg *args, int opc) /* r0 = env->tlb_table[mem_index][index].addend + addr */ #else /* !CONFIG_SOFTMMU */ +#if TARGET_LONG_BITS == 32 + tcg_out_rld (s, RLDICL, addr_reg, addr_reg, 0, 32); +#endif r1 = 4; r0 = addr_reg; #endif |