From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DD3A23858C2C; Sun, 6 Nov 2022 12:56:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DD3A23858C2C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1667739371; bh=EradEzOGsOLmHG5mNfx//XSlg1WHv3FF/xeRnrnJ/Zk=; h=From:To:Subject:Date:From; b=CWYCfdGBfYkZS8vZG4+a4P4h7nt8IV+WXF6t/XWQMMSCbStoHuCm2G5tjNprgUV7q 6Y9rkyNTJZMK5SM3WWtfQB+DdqEze6UyrWW5NtixfgSxy/nDicoPo/6sP6DVkl8stP r1x/C1fCCkHDRJw0LpT3KYds+MAwOQ0yigOsU6nc= From: "zhendong.su at inf dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107541] New: wrong code at -O1, -O2 and -O3 on x86_64-linux-gnu Date: Sun, 06 Nov 2022 12:56:07 +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=3D107541 Bug ID: 107541 Summary: wrong code at -O1, -O2 and -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 appears to be a recent regression; 12.2 compiles it correctly.=20 Compiler Explorer: https://godbolt.org/z/6nq8jxn57 [661] % 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 20221104 (experimental) [master r13-3701-g07b0096e5b6] (= GCC)=20 [662] %=20 [662] % gcctk -O0 small.c; ./a.out [663] %=20 [663] % gcctk -O1 small.c [664] % ./a.out Aborted [665] %=20 [665] % cat small.c unsigned char a =3D 1; char b, e; long c; short d; int main() { a =3D ~(1 && a); c =3D ~((~a / 8 | -2) & 11007578330939886389LLU); e =3D -c; d =3D ~c / e; if (d < 2000) __builtin_abort(); return 0; }=