diff options
author | Stefan Weil <sw@weilnetz.de> | 2015-07-10 21:22:39 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-07-13 10:07:38 +0100 |
commit | 6e3c0c6edbdddb8dd676bec1ac51b5faffc19a77 (patch) | |
tree | 8402e6b0cf142debc1080049add81ba661e34ec5 /tcg | |
parent | 6169b60285fe1ff730d840a49527e721bfb30899 (diff) | |
download | hqemu-6e3c0c6edbdddb8dd676bec1ac51b5faffc19a77.zip hqemu-6e3c0c6edbdddb8dd676bec1ac51b5faffc19a77.tar.gz |
tci: Fix regression with INDEX_op_qemu_st_i32, INDEX_op_qemu_st_i64
Commit 59227d5d45bb3c31dc2118011691c35b3c00879c did not update the
code in tcg/tci/tcg-target.c for those two cases.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1436556159-3002-1-git-send-email-sw@weilnetz.de
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tci/tcg-target.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tcg/tci/tcg-target.c b/tcg/tci/tcg-target.c index 10affab..83472db 100644 --- a/tcg/tci/tcg-target.c +++ b/tcg/tci/tcg-target.c @@ -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: |