From patchwork Sun Dec 4 02:00:15 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yongbok Kim X-Patchwork-Id: 9459837 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E5A3660515 for ; Sun, 4 Dec 2016 02:05:05 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D303427F81 for ; Sun, 4 Dec 2016 02:05:05 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C3AA627FBB; Sun, 4 Dec 2016 02:05:05 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 4DBAF27F81 for ; Sun, 4 Dec 2016 02:05:04 +0000 (UTC) Received: from localhost ([::1]:53128 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cDMAp-0006r2-A2 for patchwork-qemu-devel@patchwork.kernel.org; Sat, 03 Dec 2016 21:05:03 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cDM74-0004nt-Vm for qemu-devel@nongnu.org; Sat, 03 Dec 2016 21:01:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cDM73-0004iD-He for qemu-devel@nongnu.org; Sat, 03 Dec 2016 21:01:11 -0500 Received: from mailapp01.imgtec.com ([195.59.15.196]:26735) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cDM73-0004hK-CV for qemu-devel@nongnu.org; Sat, 03 Dec 2016 21:01:09 -0500 Received: from HHMAIL01.hh.imgtec.org (unknown [10.100.10.19]) by Forcepoint Email with ESMTPS id 07620BECE9AE for ; Sun, 4 Dec 2016 02:01:00 +0000 (GMT) Received: from localhost.localdomain (192.168.161.53) by HHMAIL01.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server (TLS) id 14.3.294.0; Sun, 4 Dec 2016 02:01:01 +0000 From: Yongbok Kim To: Date: Sun, 4 Dec 2016 02:00:15 +0000 Message-ID: <1480816817-53245-3-git-send-email-yongbok.kim@imgtec.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1480816817-53245-1-git-send-email-yongbok.kim@imgtec.com> References: <1480816817-53245-1-git-send-email-yongbok.kim@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [192.168.161.53] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 195.59.15.196 Subject: [Qemu-devel] [PULL 2/4] target-mips: Fix Loongson multimedia 'or' instruction. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Heiher Signed-off-by: Heiher Signed-off-by: Fuxin Zhang Reviewed-by: Yongbok Kim Signed-off-by: Yongbok Kim --- target-mips/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index 5ad97c7..e26f742 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -3945,7 +3945,7 @@ static void gen_loongson_multimedia(DisasContext *ctx, int rd, int rs, int rt) LMI_DIRECT(XOR_CP2, xor, xor); LMI_DIRECT(NOR_CP2, nor, nor); LMI_DIRECT(AND_CP2, and, and); - LMI_DIRECT(OR, or, or); + LMI_DIRECT(OR_CP2, or, or); case OPC_PANDN: tcg_gen_andc_i64(t0, t1, t0);