From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 2C856385800C; Tue, 26 Oct 2021 06:21:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2C856385800C From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/102857] [12 regression] r12-4526 caused regressions on ssa-dom-thread-7.c Date: Tue, 26 Oct 2021 06:21:13 +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: 12.0 X-Bugzilla-Keywords: 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: 12.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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2021 06:21:14 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D102857 --- Comment #13 from CVS Commits --- The master branch has been updated by Aldy Hernandez : https://gcc.gnu.org/g:4e417eea8f3f14131f7370f9bd5dd568611d11df commit r12-4701-g4e417eea8f3f14131f7370f9bd5dd568611d11df Author: Aldy Hernandez Date: Sat Oct 23 08:59:24 2021 +0200 [PR testsuite/102857] Tweak ssa-dom-thread-7.c for aarch64. First, ssa-dom-thread-7 was looking at a dump file that was not being generated. This probably happened in the detangling of the VRP threader from VRP, and I didn't notice because the test came back as with UNRESOLVED instead of FAIL. Second, aarch64 gets far more threads than other architectures (20 versus 12). The difference is sufficiently different to make the regex awkward. We already have special casing for aarch64 in other parts of this test, so perhaps it's simplest to have an arch specific test for the thread3 count. I don't know perhaps there's a better way. I wake up with chills in the middle of the night thinking about this test ;-). Tested on x86-64 Linux and aarch64 Linux. gcc/testsuite/ChangeLog: PR testsuite/102857 * gcc.dg/tree-ssa/ssa-dom-thread-7.c: Add -fdump-tree-vrp2-stat= s. Tweak for aarch64.=