From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C1224385276F; Sun, 29 Oct 2023 20:51:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C1224385276F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698612673; bh=4fqPi+PQQSvsbpvpyavUslpD/ff76bpP6kaAT1ln4ME=; h=From:To:Subject:Date:From; b=gJVKByJ6/8ub0MTRe5Oww3Xqf9GymU0/uxB69iN2+46V5gQ4rEJVyN9h6UW0zlwg6 is/TwUA1/Sx8pCu0pvt1YlMk54SkbAyEPDe89HKVP3C25aSwNEEfYGXtx8J1zT052U 3jMwQZyBnQNWS93WdL4hHQVk6SXy640oTys9HDoc= From: "zhendong.su at inf dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112281] New: wrong code at -O3 on x86_64-linux-gnu Date: Sun, 29 Oct 2023 20:51:13 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: zhendong.su at inf dot ethz.ch 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=3D112281 Bug ID: 112281 Summary: wrong code at -O3 on x86_64-linux-gnu Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: zhendong.su at inf dot ethz.ch Target Milestone: --- This is a regression from 11.*, and affects 12.* and later. It should be distinct from those couple of open issues with loop splitting.=20 Compiler Explorer: https://godbolt.org/z/1anT983Td [573] % gcctk -v Using built-in specs. COLLECT_GCC=3Dgcctk COLLECT_LTO_WRAPPER=3D/local/suz-local/software/local/gcc-trunk/libexec/gcc= /x86_64-pc-linux-gnu/14.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../gcc-trunk/configure --disable-bootstrap --enable-checking=3Dyes --prefix=3D/local/suz-local/software/local/gcc-trunk --enable-sanitizers --enable-languages=3Dc,c++ --disable-werror --enable-mu= ltilib Thread model: posix Supported LTO compression algorithms: zlib gcc version 14.0.0 20231029 (experimental) (GCC)=20 [574] %=20 [574] % gcctk -O2 small.c; ./a.out [575] %=20 [575] % gcctk -O3 small.c; ./a.out Aborted [576] % gcctk -O3 -fno-split-loops small.c; ./a.out Aborted [577] %=20 [577] % cat small.c struct { int : 8; int a; } b, d[4] =3D {{0}, {0}, {0}, {5}}; int c, e; int main() { for (c =3D 2; c; c--) for (e =3D 0; e < 2; e++) { d[c] =3D b =3D d[c + 1]; d[c + 1].a =3D 0; } if (b.a !=3D 0) __builtin_abort(); return 0; }=