From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46950) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZDdsl-00012G-Bj for qemu-devel@nongnu.org; Fri, 10 Jul 2015 15:22:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZDdsh-00064L-31 for qemu-devel@nongnu.org; Fri, 10 Jul 2015 15:22:47 -0400 Received: from qemu.weilnetz.de ([37.221.198.45]:45101) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZDdsg-000646-TC for qemu-devel@nongnu.org; Fri, 10 Jul 2015 15:22:43 -0400 From: Stefan Weil Date: Fri, 10 Jul 2015 21:22:39 +0200 Message-Id: <1436556159-3002-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH for-2.4] tci: Fix regression with INDEX_op_qemu_st_i32, INDEX_op_qemu_st_i64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developer , Peter Maydell , Richard Henderson Cc: Stefan Weil Commit 59227d5d45bb3c31dc2118011691c35b3c00879c did not update the code in tcg/tci/tcg-target.c for those two cases. Signed-off-by: Stefan Weil --- Peter, could you please apply this patch directly (after Richard's review)? Maybe this is simpler than waiting for a pull request. Regards Stefan tcg/tci/tcg-target.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tcg/tci/tcg-target.c b/tcg/tci/tcg-target.c index fb2339d..c6133d2 100644 --- a/tcg/tci/tcg-target.c +++ b/tcg/tci/tcg-target.c @@ -788,9 +788,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++); @@ -802,9 +799,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: -- 2.1.4