mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-24 11:24:05 +08:00
Update soft-fp from glibc (PR libgcc/77265).
This patch updates soft-fp from glibc, bringing in the fix for PR libgcc/77265, XFmode extension to TFmode wrongly turning an infinity into a NaN. A test for that bug is added. Bootstrapped with no regressions on x86_64-pc-linux-gnu. PR libgcc/77265 gcc/testsuite: * gcc.dg/torture/float128-extend-inf.c: New test. libgcc: * soft-fp/adddf3.c: Update from glibc. * soft-fp/addsf3.c: Likewise. * soft-fp/addtf3.c: Likewise. * soft-fp/divdf3.c: Likewise. * soft-fp/divsf3.c: Likewise. * soft-fp/divtf3.c: Likewise. * soft-fp/double.h: Likewise. * soft-fp/eqdf2.c: Likewise. * soft-fp/eqsf2.c: Likewise. * soft-fp/eqtf2.c: Likewise. * soft-fp/extenddftf2.c: Likewise. * soft-fp/extended.h: Likewise. * soft-fp/extendsfdf2.c: Likewise. * soft-fp/extendsftf2.c: Likewise. * soft-fp/extendxftf2.c: Likewise. * soft-fp/fixdfdi.c: Likewise. * soft-fp/fixdfsi.c: Likewise. * soft-fp/fixdfti.c: Likewise. * soft-fp/fixsfdi.c: Likewise. * soft-fp/fixsfsi.c: Likewise. * soft-fp/fixsfti.c: Likewise. * soft-fp/fixtfdi.c: Likewise. * soft-fp/fixtfsi.c: Likewise. * soft-fp/fixtfti.c: Likewise. * soft-fp/fixunsdfdi.c: Likewise. * soft-fp/fixunsdfsi.c: Likewise. * soft-fp/fixunsdfti.c: Likewise. * soft-fp/fixunssfdi.c: Likewise. * soft-fp/fixunssfsi.c: Likewise. * soft-fp/fixunssfti.c: Likewise. * soft-fp/fixunstfdi.c: Likewise. * soft-fp/fixunstfsi.c: Likewise. * soft-fp/fixunstfti.c: Likewise. * soft-fp/floatdidf.c: Likewise. * soft-fp/floatdisf.c: Likewise. * soft-fp/floatditf.c: Likewise. * soft-fp/floatsidf.c: Likewise. * soft-fp/floatsisf.c: Likewise. * soft-fp/floatsitf.c: Likewise. * soft-fp/floattidf.c: Likewise. * soft-fp/floattisf.c: Likewise. * soft-fp/floattitf.c: Likewise. * soft-fp/floatundidf.c: Likewise. * soft-fp/floatundisf.c: Likewise. * soft-fp/floatunditf.c: Likewise. * soft-fp/floatunsidf.c: Likewise. * soft-fp/floatunsisf.c: Likewise. * soft-fp/floatunsitf.c: Likewise. * soft-fp/floatuntidf.c: Likewise. * soft-fp/floatuntisf.c: Likewise. * soft-fp/floatuntitf.c: Likewise. * soft-fp/gedf2.c: Likewise. * soft-fp/gesf2.c: Likewise. * soft-fp/getf2.c: Likewise. * soft-fp/ledf2.c: Likewise. * soft-fp/lesf2.c: Likewise. * soft-fp/letf2.c: Likewise. * soft-fp/muldf3.c: Likewise. * soft-fp/mulsf3.c: Likewise. * soft-fp/multf3.c: Likewise. * soft-fp/negdf2.c: Likewise. * soft-fp/negsf2.c: Likewise. * soft-fp/negtf2.c: Likewise. * soft-fp/op-1.h: Likewise. * soft-fp/op-2.h: Likewise. * soft-fp/op-4.h: Likewise. * soft-fp/op-8.h: Likewise. * soft-fp/op-common.h: Likewise. * soft-fp/quad.h: Likewise. * soft-fp/single.h: Likewise. * soft-fp/soft-fp.h: Likewise. * soft-fp/subdf3.c: Likewise. * soft-fp/subsf3.c: Likewise. * soft-fp/subtf3.c: Likewise. * soft-fp/truncdfsf2.c: Likewise. * soft-fp/trunctfdf2.c: Likewise. * soft-fp/trunctfsf2.c: Likewise. * soft-fp/trunctfxf2.c: Likewise. * soft-fp/unorddf2.c: Likewise. * soft-fp/unordsf2.c: Likewise. * soft-fp/unordtf2.c: Likewise. From-SVN: r239513
This commit is contained in:
parent
4687d82a93
commit
feeb62681c
@ -1,3 +1,8 @@
|
|||||||
|
2016-08-16 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
PR libgcc/77265
|
||||||
|
* gcc.dg/torture/float128-extend-inf.c: New test.
|
||||||
|
|
||||||
2016-08-16 David Malcolm <dmalcolm@redhat.com>
|
2016-08-16 David Malcolm <dmalcolm@redhat.com>
|
||||||
|
|
||||||
PR c/72857
|
PR c/72857
|
||||||
|
40
gcc/testsuite/gcc.dg/torture/float128-extend-inf.c
Normal file
40
gcc/testsuite/gcc.dg/torture/float128-extend-inf.c
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/* Test infinities convert to __float128 infinity. Bug 77265. */
|
||||||
|
/* { dg-do run } */
|
||||||
|
/* { dg-require-effective-target __float128 } */
|
||||||
|
/* { dg-require-effective-target base_quadfloat_support } */
|
||||||
|
/* { dg-add-options __float128 } */
|
||||||
|
|
||||||
|
extern void abort (void);
|
||||||
|
extern void exit (int);
|
||||||
|
|
||||||
|
volatile float finf = __builtin_inff ();
|
||||||
|
volatile double dinf = __builtin_inf ();
|
||||||
|
volatile long double ldinf = __builtin_infl ();
|
||||||
|
volatile float nfinf = -__builtin_inff ();
|
||||||
|
volatile double ndinf = -__builtin_inf ();
|
||||||
|
volatile long double nldinf = -__builtin_infl ();
|
||||||
|
|
||||||
|
int
|
||||||
|
main (void)
|
||||||
|
{
|
||||||
|
volatile __float128 r;
|
||||||
|
r = (__float128) finf;
|
||||||
|
if (!__builtin_isinf (r) || __builtin_signbit (r) != 0)
|
||||||
|
abort ();
|
||||||
|
r = (__float128) dinf;
|
||||||
|
if (!__builtin_isinf (r) || __builtin_signbit (r) != 0)
|
||||||
|
abort ();
|
||||||
|
r = (__float128) ldinf;
|
||||||
|
if (!__builtin_isinf (r) || __builtin_signbit (r) != 0)
|
||||||
|
abort ();
|
||||||
|
r = (__float128) nfinf;
|
||||||
|
if (!__builtin_isinf (r) || __builtin_signbit (r) == 0)
|
||||||
|
abort ();
|
||||||
|
r = (__float128) ndinf;
|
||||||
|
if (!__builtin_isinf (r) || __builtin_signbit (r) == 0)
|
||||||
|
abort ();
|
||||||
|
r = (__float128) nldinf;
|
||||||
|
if (!__builtin_isinf (r) || __builtin_signbit (r) == 0)
|
||||||
|
abort ();
|
||||||
|
exit (0);
|
||||||
|
}
|
@ -1,3 +1,88 @@
|
|||||||
|
2016-08-16 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
PR libgcc/77265
|
||||||
|
* soft-fp/adddf3.c: Update from glibc.
|
||||||
|
* soft-fp/addsf3.c: Likewise.
|
||||||
|
* soft-fp/addtf3.c: Likewise.
|
||||||
|
* soft-fp/divdf3.c: Likewise.
|
||||||
|
* soft-fp/divsf3.c: Likewise.
|
||||||
|
* soft-fp/divtf3.c: Likewise.
|
||||||
|
* soft-fp/double.h: Likewise.
|
||||||
|
* soft-fp/eqdf2.c: Likewise.
|
||||||
|
* soft-fp/eqsf2.c: Likewise.
|
||||||
|
* soft-fp/eqtf2.c: Likewise.
|
||||||
|
* soft-fp/extenddftf2.c: Likewise.
|
||||||
|
* soft-fp/extended.h: Likewise.
|
||||||
|
* soft-fp/extendsfdf2.c: Likewise.
|
||||||
|
* soft-fp/extendsftf2.c: Likewise.
|
||||||
|
* soft-fp/extendxftf2.c: Likewise.
|
||||||
|
* soft-fp/fixdfdi.c: Likewise.
|
||||||
|
* soft-fp/fixdfsi.c: Likewise.
|
||||||
|
* soft-fp/fixdfti.c: Likewise.
|
||||||
|
* soft-fp/fixsfdi.c: Likewise.
|
||||||
|
* soft-fp/fixsfsi.c: Likewise.
|
||||||
|
* soft-fp/fixsfti.c: Likewise.
|
||||||
|
* soft-fp/fixtfdi.c: Likewise.
|
||||||
|
* soft-fp/fixtfsi.c: Likewise.
|
||||||
|
* soft-fp/fixtfti.c: Likewise.
|
||||||
|
* soft-fp/fixunsdfdi.c: Likewise.
|
||||||
|
* soft-fp/fixunsdfsi.c: Likewise.
|
||||||
|
* soft-fp/fixunsdfti.c: Likewise.
|
||||||
|
* soft-fp/fixunssfdi.c: Likewise.
|
||||||
|
* soft-fp/fixunssfsi.c: Likewise.
|
||||||
|
* soft-fp/fixunssfti.c: Likewise.
|
||||||
|
* soft-fp/fixunstfdi.c: Likewise.
|
||||||
|
* soft-fp/fixunstfsi.c: Likewise.
|
||||||
|
* soft-fp/fixunstfti.c: Likewise.
|
||||||
|
* soft-fp/floatdidf.c: Likewise.
|
||||||
|
* soft-fp/floatdisf.c: Likewise.
|
||||||
|
* soft-fp/floatditf.c: Likewise.
|
||||||
|
* soft-fp/floatsidf.c: Likewise.
|
||||||
|
* soft-fp/floatsisf.c: Likewise.
|
||||||
|
* soft-fp/floatsitf.c: Likewise.
|
||||||
|
* soft-fp/floattidf.c: Likewise.
|
||||||
|
* soft-fp/floattisf.c: Likewise.
|
||||||
|
* soft-fp/floattitf.c: Likewise.
|
||||||
|
* soft-fp/floatundidf.c: Likewise.
|
||||||
|
* soft-fp/floatundisf.c: Likewise.
|
||||||
|
* soft-fp/floatunditf.c: Likewise.
|
||||||
|
* soft-fp/floatunsidf.c: Likewise.
|
||||||
|
* soft-fp/floatunsisf.c: Likewise.
|
||||||
|
* soft-fp/floatunsitf.c: Likewise.
|
||||||
|
* soft-fp/floatuntidf.c: Likewise.
|
||||||
|
* soft-fp/floatuntisf.c: Likewise.
|
||||||
|
* soft-fp/floatuntitf.c: Likewise.
|
||||||
|
* soft-fp/gedf2.c: Likewise.
|
||||||
|
* soft-fp/gesf2.c: Likewise.
|
||||||
|
* soft-fp/getf2.c: Likewise.
|
||||||
|
* soft-fp/ledf2.c: Likewise.
|
||||||
|
* soft-fp/lesf2.c: Likewise.
|
||||||
|
* soft-fp/letf2.c: Likewise.
|
||||||
|
* soft-fp/muldf3.c: Likewise.
|
||||||
|
* soft-fp/mulsf3.c: Likewise.
|
||||||
|
* soft-fp/multf3.c: Likewise.
|
||||||
|
* soft-fp/negdf2.c: Likewise.
|
||||||
|
* soft-fp/negsf2.c: Likewise.
|
||||||
|
* soft-fp/negtf2.c: Likewise.
|
||||||
|
* soft-fp/op-1.h: Likewise.
|
||||||
|
* soft-fp/op-2.h: Likewise.
|
||||||
|
* soft-fp/op-4.h: Likewise.
|
||||||
|
* soft-fp/op-8.h: Likewise.
|
||||||
|
* soft-fp/op-common.h: Likewise.
|
||||||
|
* soft-fp/quad.h: Likewise.
|
||||||
|
* soft-fp/single.h: Likewise.
|
||||||
|
* soft-fp/soft-fp.h: Likewise.
|
||||||
|
* soft-fp/subdf3.c: Likewise.
|
||||||
|
* soft-fp/subsf3.c: Likewise.
|
||||||
|
* soft-fp/subtf3.c: Likewise.
|
||||||
|
* soft-fp/truncdfsf2.c: Likewise.
|
||||||
|
* soft-fp/trunctfdf2.c: Likewise.
|
||||||
|
* soft-fp/trunctfsf2.c: Likewise.
|
||||||
|
* soft-fp/trunctfxf2.c: Likewise.
|
||||||
|
* soft-fp/unorddf2.c: Likewise.
|
||||||
|
* soft-fp/unordsf2.c: Likewise.
|
||||||
|
* soft-fp/unordtf2.c: Likewise.
|
||||||
|
|
||||||
2016-08-15 Gilles Gouaillardet <gilles.gouaillardet@gmail.com>
|
2016-08-15 Gilles Gouaillardet <gilles.gouaillardet@gmail.com>
|
||||||
|
|
||||||
PR gcov-profile/67097
|
PR gcov-profile/67097
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a + b
|
Return a + b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a + b
|
Return a + b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a + b
|
Return a + b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a / b
|
Return a / b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a / b
|
Return a / b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a / b
|
Return a / b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Definitions for IEEE Double Precision
|
Definitions for IEEE Double Precision
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 otherwise
|
Return 0 iff a == b, 1 otherwise
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 otherwise
|
Return 0 iff a == b, 1 otherwise
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 otherwise
|
Return 0 iff a == b, 1 otherwise
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a converted to IEEE quad
|
Return a converted to IEEE quad
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Definitions for IEEE Extended Precision.
|
Definitions for IEEE Extended Precision.
|
||||||
Copyright (C) 1999-2015 Free Software Foundation, Inc.
|
Copyright (C) 1999-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Jakub Jelinek (jj@ultra.linux.cz).
|
Contributed by Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
|
||||||
@ -104,6 +104,7 @@ union _FP_UNION_E
|
|||||||
X##_f[3] = 0; \
|
X##_f[3] = 0; \
|
||||||
X##_f[0] = FP_UNPACK_RAW_E_flo.bits.frac0; \
|
X##_f[0] = FP_UNPACK_RAW_E_flo.bits.frac0; \
|
||||||
X##_f[1] = FP_UNPACK_RAW_E_flo.bits.frac1; \
|
X##_f[1] = FP_UNPACK_RAW_E_flo.bits.frac1; \
|
||||||
|
X##_f[1] &= ~_FP_IMPLBIT_E; \
|
||||||
X##_e = FP_UNPACK_RAW_E_flo.bits.exp; \
|
X##_e = FP_UNPACK_RAW_E_flo.bits.exp; \
|
||||||
X##_s = FP_UNPACK_RAW_E_flo.bits.sign; \
|
X##_s = FP_UNPACK_RAW_E_flo.bits.sign; \
|
||||||
} \
|
} \
|
||||||
@ -119,6 +120,7 @@ union _FP_UNION_E
|
|||||||
X##_f[3] = 0; \
|
X##_f[3] = 0; \
|
||||||
X##_f[0] = FP_UNPACK_RAW_EP_flo->bits.frac0; \
|
X##_f[0] = FP_UNPACK_RAW_EP_flo->bits.frac0; \
|
||||||
X##_f[1] = FP_UNPACK_RAW_EP_flo->bits.frac1; \
|
X##_f[1] = FP_UNPACK_RAW_EP_flo->bits.frac1; \
|
||||||
|
X##_f[1] &= ~_FP_IMPLBIT_E; \
|
||||||
X##_e = FP_UNPACK_RAW_EP_flo->bits.exp; \
|
X##_e = FP_UNPACK_RAW_EP_flo->bits.exp; \
|
||||||
X##_s = FP_UNPACK_RAW_EP_flo->bits.sign; \
|
X##_s = FP_UNPACK_RAW_EP_flo->bits.sign; \
|
||||||
} \
|
} \
|
||||||
@ -332,6 +334,7 @@ union _FP_UNION_E
|
|||||||
FP_UNPACK_RAW_E_flo.flt = (val); \
|
FP_UNPACK_RAW_E_flo.flt = (val); \
|
||||||
\
|
\
|
||||||
X##_f0 = FP_UNPACK_RAW_E_flo.bits.frac; \
|
X##_f0 = FP_UNPACK_RAW_E_flo.bits.frac; \
|
||||||
|
X##_f0 &= ~_FP_IMPLBIT_E; \
|
||||||
X##_f1 = 0; \
|
X##_f1 = 0; \
|
||||||
X##_e = FP_UNPACK_RAW_E_flo.bits.exp; \
|
X##_e = FP_UNPACK_RAW_E_flo.bits.exp; \
|
||||||
X##_s = FP_UNPACK_RAW_E_flo.bits.sign; \
|
X##_s = FP_UNPACK_RAW_E_flo.bits.sign; \
|
||||||
@ -345,6 +348,7 @@ union _FP_UNION_E
|
|||||||
= (union _FP_UNION_E *) (val); \
|
= (union _FP_UNION_E *) (val); \
|
||||||
\
|
\
|
||||||
X##_f0 = FP_UNPACK_RAW_EP_flo->bits.frac; \
|
X##_f0 = FP_UNPACK_RAW_EP_flo->bits.frac; \
|
||||||
|
X##_f0 &= ~_FP_IMPLBIT_E; \
|
||||||
X##_f1 = 0; \
|
X##_f1 = 0; \
|
||||||
X##_e = FP_UNPACK_RAW_EP_flo->bits.exp; \
|
X##_e = FP_UNPACK_RAW_EP_flo->bits.exp; \
|
||||||
X##_s = FP_UNPACK_RAW_EP_flo->bits.sign; \
|
X##_s = FP_UNPACK_RAW_EP_flo->bits.sign; \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a converted to IEEE double
|
Return a converted to IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a converted to IEEE quad
|
Return a converted to IEEE quad
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a converted to IEEE quad
|
Return a converted to IEEE quad
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 64bit signed integer
|
Convert a to 64bit signed integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 32bit signed integer
|
Convert a to 32bit signed integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert IEEE double to 128bit signed integer
|
Convert IEEE double to 128bit signed integer
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 64bit signed integer
|
Convert a to 64bit signed integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 32bit signed integer
|
Convert a to 32bit signed integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert IEEE single to 128bit signed integer
|
Convert IEEE single to 128bit signed integer
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 64bit signed integer
|
Convert a to 64bit signed integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 32bit signed integer
|
Convert a to 32bit signed integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert IEEE quad to 128bit signed integer
|
Convert IEEE quad to 128bit signed integer
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 64bit unsigned integer
|
Convert a to 64bit unsigned integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 32bit unsigned integer
|
Convert a to 32bit unsigned integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert IEEE double to 128bit unsigned integer
|
Convert IEEE double to 128bit unsigned integer
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 64bit unsigned integer
|
Convert a to 64bit unsigned integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 32bit unsigned integer
|
Convert a to 32bit unsigned integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert IEEE single to 128bit unsigned integer
|
Convert IEEE single to 128bit unsigned integer
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 64bit unsigned integer
|
Convert a to 64bit unsigned integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a to 32bit unsigned integer
|
Convert a to 32bit unsigned integer
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert IEEE quad to 128bit unsigned integer
|
Convert IEEE quad to 128bit unsigned integer
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 64bit signed integer to IEEE double
|
Convert a 64bit signed integer to IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 64bit signed integer to IEEE single
|
Convert a 64bit signed integer to IEEE single
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 64bit signed integer to IEEE quad
|
Convert a 64bit signed integer to IEEE quad
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 32bit signed integer to IEEE double
|
Convert a 32bit signed integer to IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 32bit signed integer to IEEE single
|
Convert a 32bit signed integer to IEEE single
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 32bit signed integer to IEEE quad
|
Convert a 32bit signed integer to IEEE quad
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 128bit signed integer to IEEE double
|
Convert a 128bit signed integer to IEEE double
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 128bit signed integer to IEEE single
|
Convert a 128bit signed integer to IEEE single
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 128bit signed integer to IEEE quad
|
Convert a 128bit signed integer to IEEE quad
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 64bit unsigned integer to IEEE double
|
Convert a 64bit unsigned integer to IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 64bit unsigned integer to IEEE single
|
Convert a 64bit unsigned integer to IEEE single
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 64bit unsigned integer to IEEE quad
|
Convert a 64bit unsigned integer to IEEE quad
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 32bit unsigned integer to IEEE double
|
Convert a 32bit unsigned integer to IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 32bit unsigned integer to IEEE single
|
Convert a 32bit unsigned integer to IEEE single
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 32bit unsigned integer to IEEE quad
|
Convert a 32bit unsigned integer to IEEE quad
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 128bit unsigned integer to IEEE double
|
Convert a 128bit unsigned integer to IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 128bit unsigned integer to IEEE single
|
Convert a 128bit unsigned integer to IEEE single
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Convert a 128bit unsigned integer to IEEE quad
|
Convert a 128bit unsigned integer to IEEE quad
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
|
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
|
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
|
Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
|
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
|
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
|
Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a * b
|
Return a * b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a * b
|
Return a * b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a * b
|
Return a * b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return -a
|
Return -a
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return -a
|
Return -a
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return -a
|
Return -a
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Basic one-word fraction declaration and manipulation.
|
Basic one-word fraction declaration and manipulation.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Basic two-word fraction declaration and manipulation.
|
Basic two-word fraction declaration and manipulation.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Basic four-word fraction declaration and manipulation.
|
Basic four-word fraction declaration and manipulation.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Basic eight-word fraction declaration and manipulation.
|
Basic eight-word fraction declaration and manipulation.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz) and
|
Jakub Jelinek (jj@ultra.linux.cz) and
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Software floating-point emulation. Common operations.
|
/* Software floating-point emulation. Common operations.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Definitions for IEEE Quad Precision.
|
Definitions for IEEE Quad Precision.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Definitions for IEEE Single Precision.
|
Definitions for IEEE Single Precision.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com),
|
Contributed by Richard Henderson (rth@cygnus.com),
|
||||||
Jakub Jelinek (jj@ultra.linux.cz),
|
Jakub Jelinek (jj@ultra.linux.cz),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a - b
|
Return a - b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a - b
|
Return a - b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return a - b
|
Return a - b
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Truncate IEEE double into IEEE single
|
Truncate IEEE double into IEEE single
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Truncate IEEE quad into IEEE double
|
Truncate IEEE quad into IEEE double
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Truncate IEEE quad into IEEE single
|
Truncate IEEE quad into IEEE single
|
||||||
Copyright (C) 1997-2015 Free Software Foundation, Inc.
|
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@cygnus.com) and
|
Contributed by Richard Henderson (rth@cygnus.com) and
|
||||||
Jakub Jelinek (jj@ultra.linux.cz).
|
Jakub Jelinek (jj@ultra.linux.cz).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Truncate IEEE quad into IEEE extended
|
Truncate IEEE quad into IEEE extended
|
||||||
Copyright (C) 2007-2015 Free Software Foundation, Inc.
|
Copyright (C) 2007-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
Contributed by Uros Bizjak (ubizjak@gmail.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 1 iff a or b is a NaN, 0 otherwise.
|
Return 1 iff a or b is a NaN, 0 otherwise.
|
||||||
Copyright (C) 2006-2015 Free Software Foundation, Inc.
|
Copyright (C) 2006-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Joseph Myers (joseph@codesourcery.com).
|
Contributed by Joseph Myers (joseph@codesourcery.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 1 iff a or b is a NaN, 0 otherwise.
|
Return 1 iff a or b is a NaN, 0 otherwise.
|
||||||
Copyright (C) 2006-2015 Free Software Foundation, Inc.
|
Copyright (C) 2006-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Joseph Myers (joseph@codesourcery.com).
|
Contributed by Joseph Myers (joseph@codesourcery.com).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Software floating-point emulation.
|
/* Software floating-point emulation.
|
||||||
Return 1 iff a or b is a NaN, 0 otherwise.
|
Return 1 iff a or b is a NaN, 0 otherwise.
|
||||||
Copyright (C) 2006-2015 Free Software Foundation, Inc.
|
Copyright (C) 2006-2016 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Joseph Myers (joseph@codesourcery.com).
|
Contributed by Joseph Myers (joseph@codesourcery.com).
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user