From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcTX-00058x-RN for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbcTW-00035V-Tw for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:51 -0400 Received: from mail-pa0-x22f.google.com ([2607:f8b0:400e:c03::22f]:35746) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbcTW-00035D-Lr for qemu-devel@nongnu.org; Mon, 14 Sep 2015 18:43:50 -0400 Received: by pacfv12 with SMTP id fv12so158892306pac.2 for ; Mon, 14 Sep 2015 15:43:49 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 14 Sep 2015 15:43:13 -0700 Message-Id: <1442270622-8955-7-git-send-email-rth@twiddle.net> In-Reply-To: <1442270622-8955-1-git-send-email-rth@twiddle.net> References: <1442270622-8955-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v16 06/35] target-tilegx: Modify _SPECIAL_ opcodes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org Both ADDX_SPECIAL_0_OPCODE_Y1 and ADD_SPECIAL_0_OPCODE_Y1 do not appear to be "special" in any way, except that they don't follow the normal naming convention using _RRR_. Reviewed-by: Peter Maydell Signed-off-by: Richard Henderson --- target-tilegx/opcode_tilegx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-tilegx/opcode_tilegx.h b/target-tilegx/opcode_tilegx.h index 33b71a9..3b8bf4f 100644 --- a/target-tilegx/opcode_tilegx.h +++ b/target-tilegx/opcode_tilegx.h @@ -830,11 +830,11 @@ enum ADDX_RRR_0_OPCODE_X0 = 2, ADDX_RRR_0_OPCODE_X1 = 2, ADDX_RRR_0_OPCODE_Y0 = 0, - ADDX_SPECIAL_0_OPCODE_Y1 = 0, + ADDX_RRR_0_OPCODE_Y1 = 0, ADD_RRR_0_OPCODE_X0 = 3, ADD_RRR_0_OPCODE_X1 = 3, ADD_RRR_0_OPCODE_Y0 = 1, - ADD_SPECIAL_0_OPCODE_Y1 = 1, + ADD_RRR_0_OPCODE_Y1 = 1, ANDI_IMM8_OPCODE_X0 = 3, ANDI_IMM8_OPCODE_X1 = 3, ANDI_OPCODE_Y0 = 2, -- 2.4.3