From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C16AD3858D37; Wed, 27 Dec 2023 19:16:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C16AD3858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1703704597; bh=YsYhZ6z3TfrSx9FYPTJn7ZIiMuQOJZTvYX3kGSFmKR0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=k3UA/8I+wFu9REbvVxFwrPuiWvx+uxQEmIMSHU09BOy2dZ5LZE0hWNrexUGLz1/1K pLY5VqOVp7CJ5qkpYZ87C8DeVVb0JVIF6YntjtDTn7l91mUFM4z/dLjLcBqy9jo7Pu uWhMDltriG9/H1SoAt9cRyUQgNKs85DN8CkQbazY= From: "kargl at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/113152] Fortran 2023 half-cycle trigonometric functions Date: Wed, 27 Dec 2023 19:16:36 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kargl at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED 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=3D113152 --- Comment #6 from kargl at gcc dot gnu.org --- In reflecting on the possibility of an OS lacking support for REAL(10) but having a REAL(16), the mapping of types into=20 C are likely REAL(4) <--> float, REAL(8) <--> double, and REAL(16) <--> long double. The current patch sort of gets=20 this wrong, because REAL(16) is not properly mapped. I'll fix that shortly.=