From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 69942 invoked by alias); 21 Feb 2019 17:09:44 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 69922 invoked by uid 89); 21 Feb 2019 17:09:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=no version=3.3.2 spammy=631 X-HELO: EUR04-VI1-obe.outbound.protection.outlook.com Received: from mail-eopbgr80044.outbound.protection.outlook.com (HELO EUR04-VI1-obe.outbound.protection.outlook.com) (40.107.8.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 21 Feb 2019 17:09:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=sddvduNUma/QxyjhXx4btsJQxKounSaNOjMoVDHvNEk=; b=EXgpfsrVV/6/D8Le+P7fRSo4Ji8SUAiSSeC8nCF72p2Gb2nD5mHkRn+f//mLvWZjKLnFC34/OgrfpyizEkDvnW4PjRXTzcyyTcJYFNkBvHhIeHZupX90ZEDqrKt790r0j4YI5gaSssvcXDp4CR0q7V+EXWS6zBvE5BnZC5d/XAI= Received: from DB5PR08MB1030.eurprd08.prod.outlook.com (10.166.14.15) by DB5PR08MB1157.eurprd08.prod.outlook.com (10.166.174.138) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.1622.19; Thu, 21 Feb 2019 17:09:39 +0000 Received: from DB5PR08MB1030.eurprd08.prod.outlook.com ([fe80::c488:f38f:60cf:ea96]) by DB5PR08MB1030.eurprd08.prod.outlook.com ([fe80::c488:f38f:60cf:ea96%4]) with mapi id 15.20.1643.016; Thu, 21 Feb 2019 17:09:39 +0000 From: Wilco Dijkstra To: Richard Biener , GCC Patches CC: nd Subject: Re: [PATCH] Fix PR89437 Date: Thu, 21 Feb 2019 17:43:00 -0000 Message-ID: References: ,<82582A0A-F1A4-43A8-89C0-30362BA87785@gmail.com> In-Reply-To: <82582A0A-F1A4-43A8-89C0-30362BA87785@gmail.com> authentication-results: spf=none (sender IP is ) smtp.mailfrom=Wilco.Dijkstra@arm.com; received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) x-ms-exchange-senderadcheck: 1 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-MS-Exchange-CrossTenant-mailboxtype: HOSTED X-SW-Source: 2019-02/txt/msg01747.txt.bz2 Hi Richard, >>Fix an issue with sinl (atanl (sqrtl (LDBL_MAX)) returning 0.0 >>instead of 1.0 by using x < sqrtl (LDBL_MAX) in match.pd. > > Wasn't that a intermediate problem with the mpfr exponent range limiting?= =20 > Please check whether that's still needed.=20 I tested it with trunk about an hour ago, and it included Jacub's patch. Are there other fixes outstanding which haven't been committed yet? Latest trunk also still gives an assertion failure in mpc with the gcc.dg/t= orture/builtin-math-5.c which started at the same time as the other mpc/mpfr releated issues: build/src/mpc/src/pow.c:631: MPC assertion failed: z_imag || mpfr_number_p = (MPC_RE(u)) build/src/gcc/gcc/testsuite/gcc.dg/torture/builtin-math-5.c:95:3: internal = compiler error: Aborted 0x6725ab crash_signal build/src/gcc/gcc/toplev.c:326 Wilco