From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D28CC38582BA; Sun, 9 Oct 2022 13:01:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D28CC38582BA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1665320513; bh=c0t9JwgUHQLg+cDcOGp3QThGXoIHw0P+SLNXJRIPPM0=; h=From:To:Subject:Date:From; b=mVPVmjh9bQDgkJ5riunvORZ7GFbxw3yg6ImwHMjkZNd4H8er8DZQjjVOCKgC7rNK3 wJgVY8EasC0EerqHUlIEctIf7t2ENT+3DJ/ekIZX5dOO/3DQEf1QqQAX33qkzFP6Uy 4N69LHajDXPGhaIZCl5FdrEELRKsRr92z1zRt/og= From: "zhendong.su at inf dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107195] New: wrong code with "-O1 -fno-tree-ccp" on x86_64-linux-gnu Date: Sun, 09 Oct 2022 13:01:53 +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=3D107195 Bug ID: 107195 Summary: wrong code with "-O1 -fno-tree-ccp" 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 doesn't fail with 12.2, so looks like a recent regression. Perhaps rel= ated to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107172 or https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107194?=20 Compiler Explorer: https://godbolt.org/z/94E6r84ra [524] % 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 20221009 (experimental) [master r13-3180-ge95e91eccd0] (= GCC)=20 [525] %=20 [525] % gcctk -O1 small.c; ./a.out [526] %=20 [526] % gcctk -O1 -fno-tree-ccp small.c [527] % ./a.out Aborted [528] %=20 [528] % cat small.c int a, b; int main() { int c =3D 0; if (a) c =3D 1; c =3D 1 & (a && c) && b; if (a) { b =3D c; __builtin_abort (); } return 0; }=