From patchwork Mon Sep 14 22:43:14 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 517588 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B494B140770 for ; Tue, 15 Sep 2015 08:46:43 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=dZPQS4jp; dkim-atps=neutral Received: from localhost ([::1]:43884 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcWH-0001ON-88 for incoming@patchwork.ozlabs.org; Mon, 14 Sep 2015 18:46:41 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcTY-00059c-Dq for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbcTX-00036V-LO for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:52 -0400 Received: from mail-pa0-x22e.google.com ([2607:f8b0:400e:c03::22e]:35747) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcTX-00035Z-Dw for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:51 -0400 Received: by pacfv12 with SMTP id fv12so158892579pac.2 for ; Mon, 14 Sep 2015 15:43:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=1w2PeRDN6eqPBYzEHUWAymCgaKNEoT1BOxcclx/B8FQ=; b=dZPQS4jpz6r2aKuMjEvg1VmhMWCFCxyxneE076BmArkbjM/sJbez+vYJ52N1WbCkWt jkf5bkIvWrzMYmGIC9TtzDXnsqBa/hQ/F+4Ek/4qQ9hz4RP3udjZeaL7ChFEKBHEMSgD bXOJlmXoh7HIPpfvDCNzAxSVqn0KmzfzzVvgJxIUlIqzrR1Z9FRxhmeaBYb4wOetxg7z 0ynUEDj2HBM2T+NYlpW/4Mp59zK6386oSdszMbPV0pHmFQoBift18CzbbzLzZsNSMMux DGQxt/ZjKgUJE1Pm1CcRx01+KTP9CUtAL7u30f5nkBdQFlFmCkqbuR68KDYqn8++sZ3h ROOQ== X-Received: by 10.66.157.72 with SMTP id wk8mr39272614pab.132.1442270630701; Mon, 14 Sep 2015 15:43:50 -0700 (PDT) Received: from bigtime.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by smtp.gmail.com with ESMTPSA id fd9sm18219832pab.34.2015.09.14.15.43.50 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 14 Sep 2015 15:43:50 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Mon, 14 Sep 2015 15:43:14 -0700 Message-Id: <1442270622-8955-8-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1442270622-8955-1-git-send-email-rth@twiddle.net> References: <1442270622-8955-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::22e Cc: peter.maydell@linaro.org Subject: [Qemu-devel] [PATCH v16 07/35] target-tilegx: Fix LDNA_ADD_IMM8_OPCODE_X1 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org An obvious typo in the mnemonic here. Reviewed-by: Peter Maydell Signed-off-by: Richard Henderson --- target-tilegx/opcode_tilegx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-tilegx/opcode_tilegx.h b/target-tilegx/opcode_tilegx.h index 3b8bf4f..989436d 100644 --- a/target-tilegx/opcode_tilegx.h +++ b/target-tilegx/opcode_tilegx.h @@ -1015,7 +1015,7 @@ enum LD_UNARY_OPCODE_X1 = 29, LNK_UNARY_OPCODE_X1 = 30, LNK_UNARY_OPCODE_Y1 = 14, - LWNA_ADD_IMM8_OPCODE_X1 = 21, + LDNA_ADD_IMM8_OPCODE_X1 = 21, MFSPR_IMM8_OPCODE_X1 = 22, MF_UNARY_OPCODE_X1 = 31, MM_BF_OPCODE_X0 = 7,