From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A08DA3858281; Thu, 9 Mar 2023 08:48:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A08DA3858281 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678351734; bh=ap3HIRpLAjRvOn84L65YyoDCxsMOSPTvqDClW0m7Xsk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=JYQcNX7ZFiNNfPP28ApcWG+RRmnyanBZTHQwaHY7lH83Bh/N11ptJm9Rb3cTvvogV xrtY6gerSoWO6ry0RZIhq3w4QZtCDePIa6b1+/b5Qi2IAm74ZxkelmDwx3SlBRw1V+ GDQeQHwMp5AkuNOPGbgnmjfESt/T8QJL/jzyI8/8= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/109031] csmith: possible bad code with -O2 -fno-strict-aliasing Date: Thu, 09 Mar 2023 08:48:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: needs-bisection, needs-reduction, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID 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: cc 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=3D109031 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #20 from Jakub Jelinek --- Well, cvise reduction of runtime testcases is always problematic, and tryin= g to ensure the reduction doesn't introduce uninitialized var uses which weren't there before (perhaps with checking for new -Wmaybe-uninitialized -Wuninitialized warnings or even all -Wall -W warnings; or perhaps with -ftrivial-var-init=3Dsomething) as well as using some timeout on the execut= ion because the execution could very well loop forever is minimum what needs to= be done.=