Re: svn commit: r305971 - stable/11/lib/msun/src

2016-09-20 Thread Bruce Evans
On Mon, 19 Sep 2016, Ed Schouten wrote: 2016-09-19 14:34 GMT+02:00 Bruce Evans : +#if (LDBL_MANT_DIG == 53) +__weak_reference(fmod, fmodl); +#endif I've noticed that libm uses __weak_reference() all over the place, but I guess that in this specific case there is no reason

Re: svn commit: r305971 - stable/11/lib/msun/src

2016-09-19 Thread Ed Schouten
Hi Bruce, 2016-09-19 14:34 GMT+02:00 Bruce Evans : > +#if (LDBL_MANT_DIG == 53) > +__weak_reference(fmod, fmodl); > +#endif I've noticed that libm uses __weak_reference() all over the place, but I guess that in this specific case there is no reason to use them, right? Wouldn't

svn commit: r305971 - stable/11/lib/msun/src

2016-09-19 Thread Bruce Evans
Author: bde Date: Mon Sep 19 12:34:28 2016 New Revision: 305971 URL: https://svnweb.freebsd.org/changeset/base/305971 Log: MFC r305380: Fix missing fmodl() on arches with 53-bit long doubles. PR: 199422, 211965 Modified: stable/11/lib/msun/src/e_fmod.c Modified: