Explorar el Código

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

pbrook hace 16 años
padre
commit
18307f2659
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      target-m68k/translate.c

+ 1 - 1
target-m68k/translate.c

@@ -2237,7 +2237,7 @@ DISAS_INSN(fpu)
                 }
                 mask >>= 1;
             }
-            tcg_temp_free_i32(tmp32);
+            tcg_temp_free_i32(addr);
         }
         return;
     }