public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] float128: use builtin_signbitf128 always
@ 2020-04-07 20:15 Paul E. Murphy
  2020-04-07 21:27 ` Paul E. Murphy
  0 siblings, 1 reply; 4+ messages in thread
From: Paul E. Murphy @ 2020-04-07 20:15 UTC (permalink / raw)
  To: libc-alpha

From: "Paul E. Murphy" <murp@ibm.com>

The minimum GCC version has been raised beyond 6 for building
glibc.  Therefore, follow the advice inside the implementation
and remove the GCC < 6 codepath.
---
 sysdeps/ieee754/float128/s_signbitf128.c | 19 +------------------
 1 file changed, 1 insertion(+), 18 deletions(-)

diff --git a/sysdeps/ieee754/float128/s_signbitf128.c b/sysdeps/ieee754/float128/s_signbitf128.c
index 1fc00658f8..c2a1097db6 100644
--- a/sysdeps/ieee754/float128/s_signbitf128.c
+++ b/sysdeps/ieee754/float128/s_signbitf128.c
@@ -17,21 +17,4 @@
    <https://www.gnu.org/licenses/>.  */
 
 #include <float128_private.h>
-#include <math.h>
-#include <math_private.h>
-
-/* Once GCC >= 6.0 is required for building glibc, this implementation can
-   be removed and replaced with an inclusion of ldbl-128/s_signbitl.c.  */
-int
-__signbitf128 (_Float128 x)
-{
-#if __GNUC_PREREQ (6, 0)
-  return __builtin_signbit (x);
-#else
-  int64_t e;
-
-  GET_FLOAT128_MSW64 (e, x);
-  return e < 0;
-#endif
-}
-hidden_def (__signbitf128)
+#include "../ldbl-128/s_signbitl.c"
-- 
2.21.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-04 21:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-07 20:15 [PATCH] float128: use builtin_signbitf128 always Paul E. Murphy
2020-04-07 21:27 ` Paul E. Murphy
2020-04-22 15:06   ` Florian Weimer
2020-05-04 21:17     ` Paul E Murphy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).