Commit 6e3c0c6e authored by Stefan Weil's avatar Stefan Weil Committed by Peter Maydell
Browse files

tci: Fix regression with INDEX_op_qemu_st_i32, INDEX_op_qemu_st_i64



Commit 59227d5d did not update the
code in tcg/tci/tcg-target.c for those two cases.

Signed-off-by: default avatarStefan Weil <sw@weilnetz.de>
Message-id: 1436556159-3002-1-git-send-email-sw@weilnetz.de
Reviewed-by: default avatarRichard Henderson <rth@twiddle.net>
Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
parent 6169b602
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -782,9 +782,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
            tcg_out_r(s, *args++);
        }
        tcg_out_i(s, *args++);
#ifdef CONFIG_SOFTMMU
        tcg_out_i(s, *args);
#endif
        break;
    case INDEX_op_qemu_st_i64:
        tcg_out_r(s, *args++);
@@ -796,9 +793,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
            tcg_out_r(s, *args++);
        }
        tcg_out_i(s, *args++);
#ifdef CONFIG_SOFTMMU
        tcg_out_i(s, *args);
#endif
        break;
    case INDEX_op_mov_i32:  /* Always emitted via tcg_out_mov.  */
    case INDEX_op_mov_i64: