From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3515F385770F; Sun, 20 Aug 2023 19:02:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3515F385770F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1692558151; bh=2JRgzqU/JTaHGri6AKx+WVFdWR/SpioeebEzRAQRK0U=; h=From:To:Subject:Date:In-Reply-To:References:From; b=LEgKyoGD8ytsrmQzqgjxyZ8/WoOzC5ejSL/ca+JcamlzR/+N8w9Oz2rqNIvv1Yz4m 7z8mzmO0qO/Cd9kYh1PqrBOg09CjZJkbZoH82VKV3x7iURA/TaqE3F8v6fw4veFBtE Oipcj8DuBQvjFtltl/IImypNWmT8wtOF1QWTWExs= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/110756] [14 Regression] commit g:92d1425ca78 causes failures in g++.dg/gomp/pr58567.C Date: Sun, 20 Aug 2023 19:02:30 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110756 --- Comment #5 from CVS Commits --- The master branch has been updated by Tobias Burnus : https://gcc.gnu.org/g:40a6803c6d8ca244a7bdda8e4ec986c418362b24 commit r14-3344-g40a6803c6d8ca244a7bdda8e4ec986c418362b24 Author: Thiago Jung Bauermann Date: Sun Aug 20 20:46:05 2023 +0200 testsuite: Adjust g++.dg/gomp/pr58567.C to new compiler message Commit 92d1425ca780 "c++: redundant targ coercion for var/alias tmpls" changed the compiler error message in this testcase from : In instantiation of 'void foo() [with T =3D int]': :14:11: required from here :8:22: error: 'int' is not a class, struct, or union type :8:22: error: 'int' is not a class, struct, or union type :8:22: error: 'int' is not a class, struct, or union type :8:3: error: expected iteration declaration or initialization compiler exited with status 1 to: : In instantiation of 'void foo() [with T =3D int]': :14:11: required from here :8:22: error: 'int' is not a class, struct, or union type :8:3: error: invalid type for iteration variable 'i' compiler exited with status 1 Excess errors: :8:3: error: invalid type for iteration variable 'i' Andrew Pinski analysed the issue in PR 110756 and considered that it wa= s a testsuite issue in that the error message changed slightly. Also, it's= a better error message. Therefore, we only need to adjust the testcase to expect the new messag= e. gcc/testsuite/ChangeLog: PR testsuite/110756 * g++.dg/gomp/pr58567.C: Adjust to new compiler error message.=