From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49962) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T5dbd-0007il-GF for qemu-devel@nongnu.org; Sun, 26 Aug 2012 10:14:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T5dbc-0000MG-Ck for qemu-devel@nongnu.org; Sun, 26 Aug 2012 10:14:25 -0400 Received: from hall.aurel32.net ([88.191.126.93]:51219) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T5dbc-0000M9-5F for qemu-devel@nongnu.org; Sun, 26 Aug 2012 10:14:24 -0400 From: Aurelien Jarno Date: Sun, 26 Aug 2012 16:14:08 +0200 Message-Id: <1345990448-15587-1-git-send-email-aurelien@aurel32.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH for-1.2] target-ppc: fix altivec instructions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , Alexander Graf , Aurelien Jarno , =?UTF-8?q?Andreas=20F=C3=A4rber?= Altivec instructions are not working anymore in PowerPC emulation, following commit d15f74fb, which inverted two registers in the call to helper. Fix that. Cc: Blue Swirl Cc: Alexander Graf Cc: Andreas Färber Signed-off-by: Aurelien Jarno --- target-ppc/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 91eb7a0..ac915cc 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -6530,7 +6530,7 @@ static void glue(gen_, name)(DisasContext *ctx) \ ra = gen_avr_ptr(rA(ctx->opcode)); \ rb = gen_avr_ptr(rB(ctx->opcode)); \ rd = gen_avr_ptr(rD(ctx->opcode)); \ - gen_helper_##name(rd, cpu_env, ra, rb); \ + gen_helper_##name(cpu_env, rd, ra, rb); \ tcg_temp_free_ptr(ra); \ tcg_temp_free_ptr(rb); \ tcg_temp_free_ptr(rd); \ -- 1.7.10.4