From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa4.mentor.iphmx.com (esa4.mentor.iphmx.com [68.232.137.252]) by sourceware.org (Postfix) with ESMTPS id 919383858D38; Wed, 10 Jan 2024 13:17:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 919383858D38 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 919383858D38 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=68.232.137.252 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704892669; cv=none; b=drY3Ic6u9J5C3eyJJOmgQPBPYJnMrGXfgrAc5hSIuYhCMnyd7xfoRqE253OIQIKmNPEDcoR6+K7Ui7cPiqdU73+UvGFrgSPrIiuwJivYzgHWmkRqnCGFrKU990ibRLZnrzNqiROztzP0cI459tjp1MX3pF598qtiZPVRRRvCnHQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704892669; c=relaxed/simple; bh=vXkgAzrPQD0CG3BPDLR7+L1zT8plZ0JUxItkfFgj0aE=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=EglDC0kdX3F2wL9x9mK5lCRgKqThAogC6RsWVeGwXxvj34Km7hEUicFv0UrjsGk6BSjx/pFx8njXLdbK+OE3AjFcbQGBoT/RdFEu+ApghITpGFVQOksUZ/rP1ycccz90GvgPAnNRe8UgcrEaZ9JhspyTxY7ZNBmoUlU4N17AasY= ARC-Authentication-Results: i=1; server2.sourceware.org X-CSE-ConnectionGUID: xtmOG3haSYOrXqkMro3SYw== X-CSE-MsgGUID: T1H8cV8oSPOJtcc2cmsXJg== X-IronPort-AV: E=Sophos;i="6.04,184,1695715200"; d="scan'208";a="27628144" Received: from orw-gwy-02-in.mentorg.com ([192.94.38.167]) by esa4.mentor.iphmx.com with ESMTP; 10 Jan 2024 05:17:45 -0800 IronPort-SDR: f/cuvi3/SFX+/GexsUGOjFttNKO/o+45onJK4eeWgcWEnUpjVlzPnMNxx46FLtowpHDYZhdlLJ tPBQGhzhSweam84l/NDLM2M/xPGInf4JZu67swXQnDFCQnhv97LmdC4BJ15iwLBIbZ2873MZlf F6YwK33hU1avWCjs2psjEAG151EjVkdznMG0r0zJz9eiFaqvfSL7D7hZnQsm+1+uiMJqtfBo+l YlGpUXZrOWScg8XYnZ8ZMCsrA2NO7WZZG7M91TDhiEUHQvlb7rEEW4BpMJoga4VES7iNGptddS iQ8= Date: Wed, 10 Jan 2024 13:17:40 +0000 From: Julian Brown To: Jakub Jelinek CC: Tobias Burnus , , Subject: Re: [PATCH 1/8] OpenMP: lvalue parsing for map/to/from clauses (C++) Message-ID: <20240110131701.250dd6e9@squid.athome> In-Reply-To: References: <9a497499-31d7-4bb2-afdd-815966b49406@codesourcery.com> <20240105122326.1f89c4d6@squid.athome> Organization: Siemens Embedded X-Mailer: Claws Mail 4.1.1git78 (GTK 3.24.38; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-14.mgc.mentorg.com (139.181.222.14) To svr-ies-mbx-11.mgc.mentorg.com (139.181.222.11) X-Spam-Status: No, score=-5.7 required=5.0 tests=BAYES_00,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,KAM_SHORT,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Wed, 10 Jan 2024 10:14:41 +0100 Jakub Jelinek wrote: > On Fri, Jan 05, 2024 at 12:23:26PM +0000, Julian Brown wrote: > > * g++.dg/gomp/bad-array-section-10.C: New test. > > This test FAILs in C++23/C++26 modes, just try > make check-g++ GXX_TESTSUITE_STDS=98,11,14,17,20,23,26 > RUNTESTFLAGS=gomp.exp=bad-array-section-10.C While in C++20 comma in > array references was deprecated, in C++23 we implement > multidimensional arrays, so the diagnostics there is different. See > https://wg21.link/p2036r3 Thanks -- I've pushed a patch to fix this. The bad-array-section-11.C test covered the C++23 case already, but I don't think normal testing iterates the newer language standards, hence missing this. Julian