From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 88F313858C3A; Fri, 19 Jan 2024 11:07:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 88F313858C3A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1705662456; bh=nVs0qUGkAhNJXrGcuYSoIoB6lRejOeWNurP9JtNUdbI=; h=From:To:Subject:Date:From; b=JFv3Ux0yjffvSlB9I1IULQK2wOGBMVe0jUqi2KluZDV/IOF90grMJRbJ48KY5z7L7 lpW7CSMOmaObC3aPuFnyIP4OaaJqc2L/iTmUpHLVIDZCC+nlMeAJ3u4H3/5K4+JMbP oxUGu2OCqR9puQMYrpefXJmUHDO1dohvPDAph2EU= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/113502] New: gcc.target/aarch64/vect-early-break-cbranch.c testcase is too sensitive Date: Fri, 19 Jan 2024 11:07:35 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new 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: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget Message-ID: 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=3D113502 Bug ID: 113502 Summary: gcc.target/aarch64/vect-early-break-cbranch.c testcase is too sensitive Product: gcc Version: 14.0 Status: UNCONFIRMED Keywords: testsuite-fail Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- Target: aarch64 Currently vect-early-break-cbranch.c fails. For the failure we have: ``` FAIL: gcc.target/aarch64/vect-early-break-cbranch.c check-function-bodies f1 body: .*\tcmge v[0-9]+.4s, v[0-9]+.4s, #0 \tumaxp v[0-9]+.4s, v[0-9]+.4s, v[0-9]+.4s \tfmov x[0-9]+, d[0-9]+ \tcbnz x[0-9]+, \.L[0-9]+ .* ... cmge v31.4s, v31.4s, #0 umaxp v31.4s, v31.4s, v31.4s fmov x3, d31 cbz x3, .L11 ``` As you can see it does not match as it is trying to match cbnz but cbz is emitted.=