Received: by mail.netbsd.org (Postfix, from userid 605) id 9488D84DA9; Sun, 8 Dec 2019 13:37:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1B4FB84D90 for ; Sun, 8 Dec 2019 13:37:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 8WYsLP-L8nab for ; Sun, 8 Dec 2019 13:37:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A04F184D64 for ; Sun, 8 Dec 2019 13:37:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9997EFA97; Sun, 8 Dec 2019 13:37:46 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sun, 8 Dec 2019 13:37:46 +0000 From: "Martin Husemann" Subject: CVS commit: [netbsd-9] src/lib/libm/arch/aarch64 To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20191208133746.9997EFA97@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Martin Husemann" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: martin Date: Sun Dec 8 13:37:46 UTC 2019 Modified Files: src/lib/libm/arch/aarch64 [netbsd-9]: fenv.c Log Message: Pull up following revision(s) (requested by riastradh in ticket #507): lib/libm/arch/aarch64/fenv.c: revision 1.5 lib/libm/arch/aarch64/fenv.c: revision 1.6 Fix fesetenv and feupdateenv. - fesetenv is supposed to set the stored rounding mode (and stored trap settings, but they have no effect on any ARMv8 I know). - feupdateenv is supposed to re-raise the exceptions that were raised in the environment when it was called. XXX atf test XXX pullup-9 Fix feraiseexcept. - Don't touch the trap flags (though on all ARMv8 I know they have no effect anyway). - Don't clear any existing raised exception flags; just add to them. XXX atf test XXX pullup-9 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.2.1 src/lib/libm/arch/aarch64/fenv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.