Commit a6035857dbffee839fca2e51379a09fcb13ba312

Authored by aurel32
1 parent 007ac6fa

target-mips: fix revision r7126

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7128 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-mips/translate.c
... ... @@ -7295,7 +7295,7 @@ static void gen_flt3_ldst (DisasContext *ctx, uint32_t opc,
7295 7295 tcg_gen_extu_i32_tl(t1, fp0);
7296 7296 tcg_gen_qemu_st32(t1, t0, ctx->mem_idx);
7297 7297 tcg_temp_free_i32(fp0);
7298   - tcg_temp_free_i32(t1);
  7298 + tcg_temp_free(t1);
7299 7299 }
7300 7300 opn = "swxc1";
7301 7301 store = 1;
... ...