Commit 52a0e9ebf1b502bcb5c36e4a1233b7c4b397e4e4
1 parent
11f94258
target-mips: fix commit r7076
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7078 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
2 deletions
target-mips/translate.c
@@ -5860,11 +5860,10 @@ static inline void gen_movcf_ps (int fs, int fd, int cc, int tf) | @@ -5860,11 +5860,10 @@ static inline void gen_movcf_ps (int fs, int fd, int cc, int tf) | ||
5860 | 5860 | ||
5861 | tcg_gen_andi_i32(t0, fpu_fcr31, get_fp_bit(cc+1)); | 5861 | tcg_gen_andi_i32(t0, fpu_fcr31, get_fp_bit(cc+1)); |
5862 | tcg_gen_brcondi_i32(cond, t0, 0, l2); | 5862 | tcg_gen_brcondi_i32(cond, t0, 0, l2); |
5863 | - tcg_temp_free_i32(t0); | ||
5864 | gen_load_fpr32h(t0, fs); | 5863 | gen_load_fpr32h(t0, fs); |
5865 | gen_store_fpr32h(t0, fd); | 5864 | gen_store_fpr32h(t0, fd); |
5865 | + tcg_temp_free_i32(t0); | ||
5866 | gen_set_label(l2); | 5866 | gen_set_label(l2); |
5867 | - | ||
5868 | } | 5867 | } |
5869 | 5868 | ||
5870 | 5869 |