From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 441B93856DC2; Thu, 6 Oct 2022 17:51:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 441B93856DC2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1665078711; bh=nIsJOslf4KhVBecWsDmzgKErI+glVgRysSy6QZB3Th0=; h=From:To:Subject:Date:From; b=D15WxutmsmWVqMF9tw/id8zy01HDs/sOMTESEsfJQ6OvvYxBDX0/guzEEni9mdb2S qdtP+lNmrNrYnwtMdnf68HPIZnEuheUC/60Hz2oFDlDnV+UK9dsS4bqG5ZIzNOw8Dx I2+sJmyKHQlVFb8cOjALLHznCqQ6Oo5WiTTwXebM= From: "zhendong.su at inf dot ethz.ch" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107172] New: wrong code with "-O1 -ftree-vrp" on x86_64-linux-gnu Date: Thu, 06 Oct 2022 17:51:44 +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=3D107172 Bug ID: 107172 Summary: wrong code with "-O1 -ftree-vrp" 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 seems to be a recent regression. Compiler Explorer: https://godbolt.org/z/xj7ods8Pv [596] % 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 20221006 (experimental) [master r13-3101-g966010b2eb4] (= GCC)=20 [597] %=20 [597] % gcctk -O1 small.c; ./a.out [598] %=20 [598] % gcctk -O1 -ftree-vrp small.c [599] % ./a.out Segmentation fault [600] %=20 [600] % cat small.c int a, *b, c, d; int main() { long e =3D 1; int f =3D a =3D 1; L1: if (a) a =3D 2; int h =3D e =3D ~e; c =3D -1; if (e >=3D a) goto L2; if (c > a) goto L1; if (a) f =3D -1; L2: d =3D (-f + d) & h; if (d) (*b)++; return 0; }=