From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8AE69385AC29; Wed, 23 Nov 2022 12:48:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8AE69385AC29 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669207713; bh=qdigOiLeQhjgPguic9KwmjCkR8y4bAfk3GDnLVoTltQ=; h=From:To:Subject:Date:From; b=lsoCwdoHgD1p34kDiDVkACHUxz0mi95xyi8qXG2re2Wrf8+IYftYBODcpgTL75Z+O WE+hB63e43PICNaUlMC69yiK3qfb22XSdu771SBAAtY4Fu/ZD5SyJQv/ztuN6QO+Dj hNyPiMrprtjkwNc7GU8TFX+N/X3wKNkIaLVIZFVs= From: "zhendong.su at inf dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107833] New: wrong code at -Os and above on x86_64-linux-gnu Date: Wed, 23 Nov 2022 12:48:33 +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=3D107833 Bug ID: 107833 Summary: wrong code at -Os and above 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: --- Compiler Explorer: https://godbolt.org/z/Tc8vbearG It appears to be a regression from 11.3. [561] % 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/13.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 --with-system-zlib Thread model: posix Supported LTO compression algorithms: zlib gcc version 13.0.0 20221123 (experimental) [master r13-4262-g1cac00d0138] (= GCC)=20 [562] %=20 [562] % gcctk -O1 small.c; ./a.out [563] %=20 [563] % gcctk -Os small.c [564] % ./a.out Segmentation fault [565] %=20 [565] % cat small.c int printf(const char *, ...); int a, b[1] =3D {0}, c, *d =3D b, e, *f, g; int main() { int h =3D 0; for (; a < 2; a++) { int i; for (g =3D 0; g < 2; g++) if (a < h) { e =3D i % 2; c =3D *f; } for (h =3D 0; h < 3; h++) { if (d) break; i--; printf("0"); } } return 0; }=