From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 551B63858D32; Mon, 13 Mar 2023 18:43:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 551B63858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678733025; bh=3x11HoNvmjuBLWgN+accOZEzfEBDUPkWCakHC5Z/LvA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ETj2aeHAoVx5NEZVChW+a00BBHl0Mu1ZR3JRK92PKGaj1KxRAb7NarI08jjweY9fe dhlTqkiTrpTkf6Shexea8w9AqZ24NWePT6A+ThdYk0Fv4uA4SUybyiqWi1TY7Qcgfv Fqn4YUa+faWDFL6Ho1ILLdSaCfVtn88is07I/Ycw= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109087] [13 Regression] csmith: end of year runtime bug since r13-4839-geef81eefcdc2a581 Date: Mon, 13 Mar 2023 18:43:45 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: 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=3D109087 --- Comment #12 from Jakub Jelinek --- As for the .DEFERRED_INIT not being DSEd when it isn't used, cvise reduced testcase is e.g. int a; int foo (void); int bar (void); void baz (void) { int *b[6]; if (foo ()) a |=3D bar (); } while with a |=3D 1; instead dse1 removes it. Richi, any thoughts on that? Of course, the real bug is on the x86 backend side.=