FreeBSD Bugzilla – Attachment 173822 Details for
Bug 211965
[patch] fmodl not properly aliased on architectures where LDBL_PREC == 53 (arm, mips, powerpc)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
diff(1) patch to properly alias fmodl on platforms where long double == double
lib-msun-src-e_fmod.c.patch (text/plain), 263 bytes, created by
Kyle Evans
on 2016-08-18 13:53:39 UTC
(
hide
)
Description:
diff(1) patch to properly alias fmodl on platforms where long double == double
Filename:
MIME Type:
Creator:
Kyle Evans
Created:
2016-08-18 13:53:39 UTC
Size:
263 bytes
patch
obsolete
>--- e_fmod.c.orig 2016-08-17 23:30:22.975328000 -0500 >+++ e_fmod.c 2016-08-17 23:23:09.025267000 -0500 >@@ -131,2 +131,7 @@ > return x; /* exact output */ > } >+ >+#if LDBL_MANT_DIG == 53 >+__weak_reference(fmod, fmodl); >+#endif >+
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 211965
:
173822
|
174233