From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 69540388215C; Thu, 13 Jun 2024 15:36:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 69540388215C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1718292977; bh=i6hDZ6+NKkFwSwCJzUd5x6XeOwfCh9vdgmEjAfSpfFs=; h=From:To:Subject:Date:From; b=Xny4saPsFXPVBfogVCCEvacFOQe5MKLBJ6k9U2Y6eIszXumYELI2qoPTB2Zm+JPwF WxSld2qhUYirUo97gvbjJUY8Iwn7kT+aaBKGSWS7WO7D+pPTx0jKs3z0XQObKqtZRR d2qQOC9//VIBreR3+vs97XqdrmLdNJ84j1HfIW3Q= From: "carlos.seo at linaro dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/115478] New: [15 Regression] gcc.target/aarch64/bitint-args.c fails Date: Thu, 13 Jun 2024 15:36:15 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 15.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: carlos.seo at linaro dot 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 bug_severity priority component assigned_to reporter target_milestone 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=3D115478 Bug ID: 115478 Summary: [15 Regression] gcc.target/aarch64/bitint-args.c fails Product: gcc Version: 15.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: carlos.seo at linaro dot org Target Milestone: --- With patch 2277f987979445f4390a5c6e092d79e04814d641, the testcases (check-function-bodies f65 | check-function-bodies f127) in gcc.target/aarch64/bitint-args.c need to be adjusted. body: \textr (x[0-9]+), x3, x2, 1 \tand (x[0-9]+), x2, 1 \torr (x[0-9]+), \2, \1, lsl 1 \tasr (x[0-9]+), \1, 63 \tstp \3, \4, \[x0\] \tret against: lsl x3, x3, 63 add x3, x3, x2, lsr 1 and x2, x2, 1 add x2, x2, x3, lsl 1 asr x3, x3, 63 stp x2, x3, [x0] ret FAIL: gcc.target/aarch64/bitint-args.c check-function-bodies f65 body: \textr (x[0-9]+), x3, x2, 63 \tand (x[0-9]+), x2, 9223372036854775807 \torr (x[0-9]+), \2, \1, lsl 63 \tasr (x[0-9]+), \1, 1 \tstp \3, \4, \[x0\] \tret against: lsl x3, x3, 1 add x3, x3, x2, lsr 63 and x2, x2, 9223372036854775807 add x2, x2, x3, lsl 63 asr x3, x3, 1 stp x2, x3, [x0] ret FAIL: gcc.target/aarch64/bitint-args.c check-function-bodies f127=