From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id ED4283853D11 for ; Thu, 30 Mar 2023 16:02:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org ED4283853D11 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D4F302F4 for ; Thu, 30 Mar 2023 09:03:08 -0700 (PDT) Received: from localhost (e121540-lin.manchester.arm.com [10.32.110.72]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 2FF883F6C4 for ; Thu, 30 Mar 2023 09:02:24 -0700 (PDT) From: Richard Sandiford To: binutils@sourceware.org Mail-Followup-To: binutils@sourceware.org, richard.sandiford@arm.com Subject: [PATCH] aarch64: Remove stray reglist variable Date: Thu, 30 Mar 2023 17:02:22 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-31.7 required=5.0 tests=BAYES_00,GIT_PATCH_0,KAM_DMARC_NONE,KAM_DMARC_STATUS,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Sorry for not catching this during testing. I was using a host compiler that predated the switch to -fno-common. Tested on aarch64-linux-gnu & pushed. --- include/opcode/aarch64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 01c8ca18bf3..2ba94fde254 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -1210,7 +1210,7 @@ struct aarch64_reglist unsigned has_index : 1; /* Lane index; valid only when has_index is 1. */ int64_t index; -} reglist; +}; /* Structure representing an operand. */ -- 2.25.1