From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0BD1E3858000; Thu, 26 Oct 2023 16:44:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0BD1E3858000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698338692; bh=BAMv9CUtUNp0RoRi8ZiQ8wlno+N4izcBXiI29DP+uyQ=; h=From:To:Subject:Date:From; b=K6ga1jXIqyZI3YCCfChn4cdUP99Sf2PC+QeJsbHZ6yNwj5zIvyyJIP2V8riPSf3+X DQMBYjE7n/Vfg11VsfPAOcNqJZ1paBeWtds8wHWyB/Y/fOdVDWKt0Mpatsav2utIdn YTA/k2K4Tnsy2I4kaqTexsU+WUrwcOu9Y4wUzmAg= From: "seurer at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/112103] New: [14 regression] gcc.target/powerpc/rlwinm-0.c fails after r14-4941-gd1bb9569d70304 Date: Thu, 26 Oct 2023 16:44:50 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: seurer 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 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=3D112103 Bug ID: 112103 Summary: [14 regression] gcc.target/powerpc/rlwinm-0.c fails after r14-4941-gd1bb9569d70304 Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: seurer at gcc dot gnu.org Target Milestone: --- g:d1bb9569d7030490fe7bb35af432f934560d689d, r14-4941-gd1bb9569d70304 make -k check-gcc RUNTESTFLAGS=3D"powerpc.exp=3Dgcc.target/powerpc/rlwinm-= 0.c" FAIL: gcc.target/powerpc/rlwinm-0.c scan-assembler-times (?n)^\\s+rldicl 30= 81 FAIL: gcc.target/powerpc/rlwinm-0.c scan-assembler-times (?n)^\\s+rlwinm 30= 93 # of expected passes 5 # of unexpected failures 2 These changes in code output are OK as neither the original rlwinm nor the rldicl actually have any effect. So in the short term the test case just n= eeds to update its instruction counts. We are tracking something to get rid of = the extraneous ops later. seurer@ltcden2-lp1:~/gcc/git/build/gcc-test$ diff rlwinm-0.s.r14-4940 rlwinm-0.s.r14-4941 5371c5371 < rlwinm 3,3,0,0xffff --- > rldicl 3,3,0,32 6089c6089 < rlwinm 3,3,0,0xff --- > rldicl 3,3,0,32 8959c8959 < rlwinm 3,3,0,0xffff --- > rldicl 3,3,0,32 9677c9677 < rlwinm 3,3,0,0xff --- > rldicl 3,3,0,32 12546c12546 < rlwinm 3,3,0,0xffff --- > rldicl 3,3,0,32 13264c13264 < rlwinm 3,3,0,0xff --- > rldicl 3,3,0,32 16131c16131 < rlwinm 3,3,0,0xffff --- > rldicl 3,3,0,32 19715c19715 < rlwinm 3,3,0,0xffff --- > rldicl 3,3,0,32 23298c23298 < rlwinm 3,3,0,0xffff --- > rldicl 3,3,0,32 commit d1bb9569d7030490fe7bb35af432f934560d689d (HEAD) Author: Roger Sayle Date: Thu Oct 26 10:06:59 2023 +0100 PR 91865: Avoid ZERO_EXTEND of ZERO_EXTEND in make_compound_operation.=