From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D7C4738515F1; Thu, 10 Jun 2021 08:17:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D7C4738515F1 From: "suochenyao at 163 dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/101009] New: wrong code with "-O3 -fno-tree-sra" Date: Thu, 10 Jun 2021 08:17:34 +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: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: suochenyao at 163 dot com 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 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: Thu, 10 Jun 2021 08:17:35 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D101009 Bug ID: 101009 Summary: wrong code with "-O3 -fno-tree-sra" Product: gcc Version: 12.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: suochenyao at 163 dot com Target Milestone: --- ***************************************************************************= **** OS and Platform: CentOS Linux release 7.8.2003 (Core), x86_64 GNU/Linux ***************************************************************************= **** Program: int printf(const char *, ...); struct a { unsigned b; unsigned c; } e, *f =3D &e; int d =3D 1; int main() { for (; d; d--) { struct a g[] =3D {{2, 1}, {2, 1}}; *f =3D g[1]; } printf("%d\n", e.c); } ***************************************************************************= **** gcc version: $ gcc -v Using built-in specs. COLLECT_GCC=3D/data/bin/gcc-dev/bin/gcc COLLECT_LTO_WRAPPER=3D/data/bin/gcc-dev/libexec/gcc/x86_64-pc-linux-gnu/12.= 0.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ../configure --prefix=3D/data/bin/gcc-dev --disable-multil= ib --enable-languages=3Dc,c++ Thread model: posix Supported LTO compression algorithms: zlib gcc version 12.0.0 20210609 (experimental) (GCC) git version: 53cb324cb4f9475d4eabcd9f5a858c5edaacc0cf ***************************************************************************= **** Command Lines: $ gcc -O3 -fno-tree-sra -Wall -Wextra -fno-strict-aliasing -fwrapv a.c -o a1.out $ gcc a.c -o a2.out $ ./a1.out 0 $ ./a2.out 1=