From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 38D34385B52D; Sat, 28 Oct 2023 06:11:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 38D34385B52D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698473477; bh=Be3XBuYV6oxPJh1iEeUCkCyDOQKnUbI18uvLoktVG54=; h=From:To:Subject:Date:From; b=TuzQZg0ZHkQMIleYQwFTRuA79Lc64fV9W23dteRn4QvkVME8iN/ppxuYEoZn9qYS0 13pgt32Fn6R/Xmk+CivSPNd68jOqZ1G3RvAXQJsP5zgRzq5RpIAXTWBV11G84LVkwn 3EEYO6BZ2d7Y82L3T39jqP1yP4XVcrpNNs9EqgWw= From: "zhendong.su at inf dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112113] New: wrong code at -O3 on x86_64-linux-gnu Date: Sat, 28 Oct 2023 06:11:16 +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=3D112113 Bug ID: 112113 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: --- It appears to be a recent regression. Compiler Explorer: https://godbolt.org/z/vaY9GEnrz [549] % 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 20231028 (experimental) (GCC)=20 [550] %=20 [550] % gcctk -O2 small.c; ./a.out [551] %=20 [551] % gcctk -O3 small.c small.c: In function =E2=80=98main=E2=80=99: small.c:3:29: warning: iteration 1 invokes undefined behavior [-Waggressive-loop-optimizations] 3 | for (int b =3D 0; b < 33; b +=3D 3) { | ~~^~~~ small.c:3:21: note: within this loop 3 | for (int b =3D 0; b < 33; b +=3D 3) { | ~~^~~~ [552] % ./a.out Aborted [553] %=20 [553] % cat small.c volatile int a; int main() { for (int b =3D 0; b < 33; b +=3D 3) { if (b > 31) a++; } if (a !=3D 0) __builtin_abort(); return 0; }=