From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 338283861848; Fri, 5 Jan 2024 14:49:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 338283861848 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704466181; bh=ZGNiiSSUNiUhIde5laAZCwn4bsz9ovsgqECy9X1rTw8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ZEGGMV+pza+H4/76PYHvuPr5b9fGzFeXqQiu7B+S9zNJrNdOXE849q6PCW4cEWELy SVimFppWaYrNuyaW40k7o7PviZANjMAvxw5aWuEMeQfo2Wp1j9eiH41iClN6oYVH0k FKFd5YL53upjfw+yuypglwrxt1UtrrQzIP34VV/s= From: "xry111 at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/110796] builtin_iseqsig fails some tests in armv8l-linux-gnueabihf Date: Fri, 05 Jan 2024 14:49:39 +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: 14.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: xry111 at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rearnsha 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=3D110796 Xi Ruoyao changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xry111 at gcc dot gnu.org --- Comment #13 from Xi Ruoyao --- (In reply to Francois-Xavier Coudert from comment #8) > (In reply to Richard Earnshaw from comment #6) > > Is the exception status supposed to be in a defined state when the test > > runs? Shouldn't there be a call to feclearexcept (FE_ALL_EXCEPT) at the > > start of the test? >=20 > Isn't the exception status guaranteed to be defined (and not signaling) w= hen > the program starts? It should be guaranteed. Otherwise it indicates a bug in kernel or libc. > But adding feclearexcept (FE_ALL_EXCEPT); at the beginning of main() could > not hurt, for sure.=