From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12378 invoked by alias); 1 Sep 2016 15:34:59 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 12272 invoked by uid 89); 1 Sep 2016 15:34:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy= X-HELO: mx0a-001b2d01.pphosted.com X-IBM-Helo: d01dlp01.pok.ibm.com X-IBM-MailFrom: murphyp@linux.vnet.ibm.com Subject: Re: [PATCH 4/5] Make common fmin implementation generic. To: Joseph Myers References: <5bab985bb0c6156137f3925101b15bbb89c947ca.1472599898.git.murphyp@linux.vnet.ibm.com> Cc: libc-alpha@sourceware.org From: "Paul E. Murphy" Date: Thu, 01 Sep 2016 15:35:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-TM-AS-GCONF: 00 X-Content-Scanned: Fidelis XPS MAILER x-cbid: 16090115-0044-0000-0000-00000113D79F X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00005692; HX=3.00000240; KW=3.00000007; PH=3.00000004; SC=3.00000184; SDB=6.00752512; UDB=6.00355807; IPR=6.00525185; BA=6.00004686; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00012551; XFM=3.00000011; UTC=2016-09-01 15:34:54 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 16090115-0045-0000-0000-0000052ADF4F Message-Id: X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-09-01_07:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1604210000 definitions=main-1609010170 X-SW-Source: 2016-09/txt/msg00011.txt.bz2 On 08/31/2016 11:55 AM, Joseph Myers wrote: > On Tue, 30 Aug 2016, Paul E. Murphy wrote: > >> * math/Makefile (gen-libm-calls): Add s_fmin >> (libm-calls): Remove above. >> >> * math/s_fmin.c: Refactor into ... >> * math/s_fmin_template.c: New file. >> >> * math/s_fminf.c: Removed. >> * math/s_fminl.c: Removed. >> * sysdeps/ieee754/ldbl-opt/math-type-macros-double.h: >> (LDOUBLE_fmin_libm_version): New macro. >> >> * sysdeps/ieee754/ldbl-opt/s_fmin.c: Removed. >> * sysdeps/ieee754/ldbl-opt/s_fminl.c: Removed. > > OK. > Committed as f306ea1.