From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C69A4385332C; Wed, 5 Jun 2024 06:59:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C69A4385332C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1717570743; bh=lG9Kw6WHf52vOZt3UvALb41FcLoUUv0ANAOUi+KZY8s=; h=From:To:Subject:Date:In-Reply-To:References:From; b=NqQmVQmwdcXD5bzs4b8ilEIX3ZZxr1d/LgNzMTKpe5zsWfA3zvbx0cVa3H6naH/XO /Ihbzf5Xg0wxQ8CfFChETF6qK1i2FUCOey3XRRjcsfBhhwfwdMXziKs7/h3AmCjzQv aZxncAjgMwDp1+VVWpxxg9xTw7DB/+yNVAjZqCaQ= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/115345] [12/13/14/15 Regression] Different outputs compared to GCC 11- and MSVC/Clang Date: Wed, 05 Jun 2024 06:59:02 +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: 12.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: WAITING 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: 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=3D115345 --- Comment #12 from Richard Biener --- (In reply to Djordje Baljozovic from comment #11) > (In reply to Djordje Baljozovic from comment #9) > > (In reply to Andrew Pinski from comment #7) > > > A few questions, does `-fsanitize=3Dundefined -fsanitize=3Daddress` r= eport > > > anything? Does it work at -O0 and not just -O3? Does adding > > > -fno-strict-aliasing to the command line "fix" the crash? Are there a= ny > > > warnings with `-Wextra -Wall` that might be causing an issue? > >=20 > > Have not tested -O0 and -fno-strict-aliasing; will let you know if this > > fixed the problem. > > No warnings with -Wextra -Wall to my knowledge. > >=20 > > Sincerely, > > George >=20 > Hi Andrew and Jakub, > The results are more than interesting: >=20 > 1. -fno-strict-aliasing: none of the inputs processed (with O3) > 2. O0: all but one input processed > 3. O3: none of the inputs processed > 4. O1 and O2: all inputs processed without any issues -- this did it. >=20 > Now the question is: how on Earth did O1/O2 do the trick, and not O0?! Can you check whether -O0 works with the other compilers? It feels like you might be triggering some undefined behavior in your code. If you have a short running example that breaks with -O0 it might be also interesting to run it through valgrind to spot use-after-free or uninitialized use issues. > Once again, thanks a lot for your detailed and quick responses. > George > P.S. I will keep @Jakub's bisect idea in mind if something like this happ= ens > in the future.=