+2017-09-16 Jakub Jelinek <jakub@redhat.com>
+
+ PR libquadmath/65757
+ * math/roundq.c: Cherry-pick upstream glibc 2015-04-28 change.
+
2016-06-03 Release Manager
* GCC 5.4.0 released.
/* Round __float128 to integer away from zero.
- Copyright (C) 1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1997-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997 and
Jakub Jelinek <jj@ultra.linux.cz>, 1999.
GET_FLT128_WORDS64 (i0, i1, x);
j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
- if (j0 < 31)
+ if (j0 < 48)
{
if (j0 < 0)
{