From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DA6F73858D3C; Sat, 13 Apr 2024 07:06:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DA6F73858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1712992013; bh=v5kK1BLqtq4h89hYM37ka9oV8H14AJEaEVDWIDuRGkY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ERC2wMM44U7YJ8+3ybQ+W2aySwFO6h867Lip6znE4QPHh1r7iMfpwq2FFCCrttX6g NQbGs1Kuzmx3YCb4AUIk+a7svWduuzEy7YpbGptkNv7GLKKR3xLhVEGyP+ROntDvIj W7xl9xHN9+ioqvdejW9wwyw4y8SeUsr6z1ePhqS0= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgcc/114689] [14 Regression] libgcc/config/m68k/fpgnulib.c:305: Suspicious coding ? Date: Sat, 13 Apr 2024 07:06:53 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libgcc X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.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=3D114689 --- Comment #6 from David Binderman --- (In reply to Jakub Jelinek from comment #5) > And does > extern void g( int); >=20 > void f( int mant, int sticky) > { > mant =3D mant >> 1 ; > mant =3D mant >> 1 | (mant & 1); > mant =3D mant >> 1 | (mant & 1) | (!!sticky); > mant =3D !!sticky; > mant =3D (mant & 1) | (!!sticky); > g( mant); > } > shut up those warnings? Yes.=