From patchwork Mon Dec 27 16:27:23 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 49281 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 26E22385841C for ; Mon, 27 Dec 2021 16:28:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 26E22385841C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1640622484; bh=JEfpJfYw7TPLQrrBr+gbq2GMYf3br+M/P+HzpT0kloo=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=ciYudQd7a5wRRbXMC8o593k95EEcdU/2Wi2Z9WNuc146QAod/BxEOruGr/o7WTTcL bUKrPYD4pGDtKkwaZfV7RF+IWAUdl6IQI51JwSkxlWhHbryfdWAeVfbwUZyxPIoVbV oV9Syo7+eMH5Nw5xmGf7B4OP7uALVq77F/4/4sWw= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 25DCB3858D39 for ; Mon, 27 Dec 2021 16:27:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 25DCB3858D39 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-160-0by2OsxmNXeZag4YQhpLUw-1; Mon, 27 Dec 2021 11:27:26 -0500 X-MC-Unique: 0by2OsxmNXeZag4YQhpLUw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 748D21006AA0; Mon, 27 Dec 2021 16:27:25 +0000 (UTC) Received: from localhost (unknown [10.33.36.32]) by smtp.corp.redhat.com (Postfix) with ESMTP id C68AF87973; Mon, 27 Dec 2021 16:27:24 +0000 (UTC) To: gcc-patches@gcc.gnu.org Subject: [committed] aarch64: Fix mismatched extern "C" block [PR100985] Date: Mon, 27 Dec 2021 16:27:23 +0000 Message-Id: <20211227162723.1057540-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-Spam-Status: No, score=-13.9 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Jonathan Wakely via Gcc-patches From: Jonathan Wakely Reply-To: Jonathan Wakely Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" Untested, committed as obvious, fixing the 9.4.0 regression introduced by r9-8936. gcc/ChangeLog: PR target/100985 * config/aarch64/arm_acle.h: Remove unclosed extern "C" block. --- gcc/config/aarch64/arm_acle.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gcc/config/aarch64/arm_acle.h b/gcc/config/aarch64/arm_acle.h index 56147352c23..8c622a3985b 100644 --- a/gcc/config/aarch64/arm_acle.h +++ b/gcc/config/aarch64/arm_acle.h @@ -98,10 +98,6 @@ __rint64x (double __a) #pragma GCC target ("+nothing+crc") -#ifdef __cplusplus -extern "C" { -#endif - __extension__ static __inline uint32_t __attribute__ ((__always_inline__)) __crc32b (uint32_t __a, uint8_t __b) {