From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx07-00178001.pphosted.com (mx07-00178001.pphosted.com [185.132.182.106]) by sourceware.org (Postfix) with ESMTPS id 01D13384D14D for ; Thu, 20 Oct 2022 19:06:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 01D13384D14D Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=foss.st.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=foss.st.com Received: from pps.filterd (m0241204.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 29KFDaVE002934; Thu, 20 Oct 2022 21:06:42 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=foss.st.com; h=message-id : date : mime-version : subject : to : cc : references : from : in-reply-to : content-type : content-transfer-encoding; s=selector1; bh=WDbe8Tlhr4ViViLg4l6UuBBGz2TGWbXW85tcc1iGaeU=; b=8aYboeSWl7pa00jSM3jfv+XUaoMbLfpOLR3mXu/02YmMldwXQKMwokb1m1m87qZpHa3S lfOPticN+6UzT3G5+pQt6T3r/4BeyxhOkLfzfajkrwHX/gAwm7X2T2p12WAgJlsGDhIp oilI/5E4KDV41BIMwpY/Zvp8lYNNt/6nDTdGdNoVQvEMuQTdz5WxAULRo5vJlB2xwNAe Z+GIfS474gzbv+pnsHXsb+nrKOqXElHrX/Ecyml66WEqAhbumnaKOEmwGTX3UPSEOmZz 2aFc30UKGdxfFfso+hUQNO2CpdPN/IMfwtGYs5SAzJjT/LPO9vMEyV8LQwMOpMqfHLq6 TA== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com (PPS) with ESMTPS id 3k94sdtae6-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 20 Oct 2022 21:06:42 +0200 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 4C64910002A; Thu, 20 Oct 2022 21:06:36 +0200 (CEST) Received: from Webmail-eu.st.com (shfdag1node3.st.com [10.75.129.71]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id 0CD9E2721CC; Thu, 20 Oct 2022 21:06:36 +0200 (CEST) Received: from [10.252.25.190] (10.252.25.190) by SHFDAG1NODE3.st.com (10.75.129.71) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Thu, 20 Oct 2022 21:06:33 +0200 Message-ID: <7860f8df-bd1d-3464-3b67-300d9357f858@foss.st.com> Date: Thu, 20 Oct 2022 21:06:32 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.3.3 Subject: Re: [PATCH v4] testsuite: Sanitize fails for SP FPU on Arm Content-Language: en-US To: Joseph Myers CC: References: <20221019141949.1741947-1-torbjorn.svensson@foss.st.com> From: Torbjorn SVENSSON In-Reply-To: Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.252.25.190] X-ClientProxiedBy: SHFCAS1NODE2.st.com (10.75.129.73) To SHFDAG1NODE3.st.com (10.75.129.71) X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.895,Hydra:6.0.545,FMLib:17.11.122.1 definitions=2022-10-20_09,2022-10-20_01,2022-06-22_01 X-Spam-Status: No, score=-5.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,NICE_REPLY_A,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 2022-10-20 20:19, Joseph Myers wrote: > On Wed, 19 Oct 2022, Torbjörn SVENSSON via Gcc-patches wrote: > >> This patch stops reporting fails for Arm targets with single >> precision floating point unit for types wider than 32 bits (the width >> of float on arm-none-eabi). >> >> As reported in PR102017, fenv is reported as supported in recent >> versions of newlib. At the same time, for some Arm targets, the >> implementation in libgcc does not support exceptions and thus, the >> test fails with a call to abort(). > > This patch is OK. > Thanks Joseph! Pushed.