Commit 18307f2659c4e8c36fb6b32ab312f759cb068fd4

Authored by pbrook
1 parent 243ee8f7

Fix ColdFire fmovem. Free the temporary we just allocated rather than some

other arbitrary value (e.g. A7).

Signed-off-by: Paul Brook <paul@codesourcery.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6643 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-m68k/translate.c
... ... @@ -2237,7 +2237,7 @@ DISAS_INSN(fpu)
2237 2237 }
2238 2238 mask >>= 1;
2239 2239 }
2240   - tcg_temp_free_i32(tmp32);
  2240 + tcg_temp_free_i32(addr);
2241 2241 }
2242 2242 return;
2243 2243 }
... ...