]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add narrowing fma functions
authorJoseph Myers <joseph@codesourcery.com>
Wed, 22 Sep 2021 21:25:31 +0000 (21:25 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 22 Sep 2021 21:25:31 +0000 (21:25 +0000)
This patch adds the narrowing fused multiply-add functions from TS
18661-1 / TS 18661-3 / C2X to glibc's libm: ffma, ffmal, dfmal,
f32fmaf64, f32fmaf32x, f32xfmaf64 for all configurations; f32fmaf64x,
f32fmaf128, f64fmaf64x, f64fmaf128, f32xfmaf64x, f32xfmaf128,
f64xfmaf128 for configurations with _Float64x and _Float128;
__f32fmaieee128 and __f64fmaieee128 aliases in the powerpc64le case
(for calls to ffmal and dfmal when long double is IEEE binary128).
Corresponding tgmath.h macro support is also added.

The changes are mostly similar to those for the other narrowing
functions previously added, especially that for sqrt, so the
description of those generally applies to this patch as well.  As with
sqrt, I reused the same test inputs in auto-libm-test-in as for
non-narrowing fma rather than adding extra or separate inputs for
narrowing fma.  The tests in libm-test-narrow-fma.inc also follow
those for non-narrowing fma.

The non-narrowing fma has a known bug (bug 6801) that it does not set
errno on errors (overflow, underflow, Inf * 0, Inf - Inf).  Rather
than fixing this or having narrowing fma check for errors when
non-narrowing does not (complicating the cases when narrowing fma can
otherwise be an alias for a non-narrowing function), this patch does
not attempt to check for errors from narrowing fma and set errno; the
CHECK_NARROW_FMA macro is still present, but as a placeholder that
does nothing, and this missing errno setting is considered to be
covered by the existing bug rather than needing a separate open bug.
missing-errno annotations are duly added to many of the
auto-libm-test-in test inputs for fma.

This completes adding all the new functions from TS 18661-1 to glibc,
so will be followed by corresponding stdc-predef.h changes to define
__STDC_IEC_60559_BFP__ and __STDC_IEC_60559_COMPLEX__, as the support
for TS 18661-1 will be at a similar level to that for C standard
floating-point facilities up to C11 (pragmas not implemented, but
library functions done).  (There are still further changes to be done
to implement changes to the types of fromfp functions from N2548.)

Tested as followed: natively with the full glibc testsuite for x86_64
(GCC 11, 7, 6) and x86 (GCC 11); with build-many-glibcs.py with GCC
11, 7 and 6; cross testing of math/ tests for powerpc64le, powerpc32
hard float, mips64 (all three ABIs, both hard and soft float).  The
different GCC versions are to cover the different cases in tgmath.h
and tgmath.h tests properly (GCC 6 has _Float* only as typedefs in
glibc headers, GCC 7 has proper _Float* support, GCC 8 adds
__builtin_tgmath).

82 files changed:
NEWS
manual/arith.texi
math/Makefile
math/Versions
math/auto-libm-test-in
math/auto-libm-test-out-fma
math/auto-libm-test-out-narrow-fma [new file with mode: 0644]
math/bits/mathcalls-narrow.h
math/gen-tgmath-tests.py
math/libm-test-driver.c
math/libm-test-narrow-fma.inc [new file with mode: 0644]
math/math-narrow.h
math/s_fma.c
math/s_fmal.c
math/tgmath.h
sysdeps/i386/i686/multiarch/s_fma.c
sysdeps/ia64/fpu/s_fma.S
sysdeps/ia64/fpu/s_fmal.S
sysdeps/ieee754/dbl-64/s_f32xfmaf64.c [new file with mode: 0644]
sysdeps/ieee754/dbl-64/s_ffma.c [new file with mode: 0644]
sysdeps/ieee754/dbl-64/s_fma.c
sysdeps/ieee754/float128/float128_private.h
sysdeps/ieee754/float128/s_f32fmaf128.c [new file with mode: 0644]
sysdeps/ieee754/float128/s_f64fmaf128.c [new file with mode: 0644]
sysdeps/ieee754/float128/s_f64xfmaf128.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-128/s_dfmal.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-128/s_f64xfmaf128.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-128/s_ffmal.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-128/s_fma.c
sysdeps/ieee754/ldbl-128/s_fmal.c
sysdeps/ieee754/ldbl-128ibm-compat/Versions
sysdeps/ieee754/ldbl-128ibm/s_dfmal.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-128ibm/s_ffmal.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-96/s_dfmal.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-96/s_ffmal.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-96/s_fma.c
sysdeps/ieee754/ldbl-opt/Makefile
sysdeps/ieee754/ldbl-opt/nldbl-dfma.c [new file with mode: 0644]
sysdeps/ieee754/ldbl-opt/nldbl-ffma.c [new file with mode: 0644]
sysdeps/ieee754/soft-fp/s_dfmal.c [new file with mode: 0644]
sysdeps/ieee754/soft-fp/s_ffma.c [new file with mode: 0644]
sysdeps/ieee754/soft-fp/s_ffmal.c [new file with mode: 0644]
sysdeps/ieee754/soft-fp/s_fma.c
sysdeps/ieee754/soft-fp/s_fmal.c
sysdeps/mach/hurd/i386/libm.abilist
sysdeps/powerpc/fpu/libm-test-ulps
sysdeps/powerpc/powerpc64/le/fpu/multiarch/float128-ifunc-macros.h
sysdeps/powerpc/powerpc64/le/fpu/multiarch/float128-ifunc.h
sysdeps/riscv/rvd/s_fma.c
sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c
sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c
sysdeps/unix/sysv/linux/aarch64/libm.abilist
sysdeps/unix/sysv/linux/alpha/libm.abilist
sysdeps/unix/sysv/linux/arc/libm.abilist
sysdeps/unix/sysv/linux/arm/be/libm.abilist
sysdeps/unix/sysv/linux/arm/le/libm.abilist
sysdeps/unix/sysv/linux/csky/libm.abilist
sysdeps/unix/sysv/linux/hppa/libm.abilist
sysdeps/unix/sysv/linux/i386/libm.abilist
sysdeps/unix/sysv/linux/ia64/libm.abilist
sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist
sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist
sysdeps/unix/sysv/linux/microblaze/be/libm.abilist
sysdeps/unix/sysv/linux/microblaze/le/libm.abilist
sysdeps/unix/sysv/linux/mips/mips32/libm.abilist
sysdeps/unix/sysv/linux/mips/mips64/libm.abilist
sysdeps/unix/sysv/linux/nios2/libm.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libm.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libm.abilist
sysdeps/unix/sysv/linux/riscv/rv32/libm.abilist
sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist
sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist
sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist
sysdeps/unix/sysv/linux/sh/be/libm.abilist
sysdeps/unix/sysv/linux/sh/le/libm.abilist
sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist
sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist
sysdeps/unix/sysv/linux/x86_64/64/libm.abilist
sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist
sysdeps/x86_64/fpu/multiarch/s_fma.c

diff --git a/NEWS b/NEWS
index 3e3c074238f78250521bb095cca3c93f582a7489..889578bf39d3a8ffc56a504fa94699b6f6b7c23a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -29,6 +29,9 @@ Major new features:
   - fsqrt, fsqrtl, dsqrtl and corresponding fMsqrtfN, fMsqrtfNx,
     fMxsqrtfN and fMxsqrtfNx functions.
 
+  - ffma, ffmal, dfmal and corresponding fMfmafN, fMfmafNx, fMxfmafN and
+    fMxfmafNx functions.
+
 Deprecated and removed features, and other changes affecting compatibility:
 
 * The r_version update in the debugger interface makes the glibc binary
index edf1fd71f8b23e4498f13afb63e097980d3196af..6a158e624d8f48c8290e527efd5a4dcf09c6d7ac 100644 (file)
@@ -2289,6 +2289,27 @@ function without any intermediate rounding to the type of the
 arguments.
 @end deftypefun
 
+@deftypefun float ffma (double @var{x}, double @var{y}, double @var{z})
+@deftypefunx float ffmal (long double @var{x}, long double @var{y}, long double @var{z})
+@deftypefunx double dfmal (long double @var{x}, long double @var{y}, long double @var{z})
+@deftypefunx _FloatM fMfmafN (_Float@var{N} @var{x}, _Float@var{N} @var{y}, _Float@var{N} @var{z})
+@deftypefunx _FloatM fMfmafNx (_Float@var{N}x @var{x}, _Float@var{N}x @var{y}, _Float@var{N}x @var{z})
+@deftypefunx _FloatMx fMxfmafN (_Float@var{N} @var{x}, _Float@var{N} @var{y}, _Float@var{N} @var{z})
+@deftypefunx _FloatMx fMxfmafNx (_Float@var{N}x @var{x}, _Float@var{N}x @var{y}, _Float@var{N}x @var{z})
+@standards{TS 18661-1:2014, math.h}
+@standardsx{fMfmafN, TS 18661-3:2015, math.h}
+@standardsx{fMfmafNx, TS 18661-3:2015, math.h}
+@standardsx{fMxfmafN, TS 18661-3:2015, math.h}
+@standardsx{fMxfmafNx, TS 18661-3:2015, math.h}
+@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
+
+These functions, from TS 18661-1:2014 and TS 18661-3:2015, return
+@math{(@var{x} @mul{} @var{y}) + @var{z}}, rounded once to the return
+type of the function without any intermediate rounding to the type of
+the arguments and without any intermediate rounding of result of the
+multiplication.
+@end deftypefun
+
 @node Complex Numbers
 @section Complex Numbers
 @pindex complex.h
index 987e9841f955349f9932828cd7c1032ad201e8c9..8d67bfff7e403790693a7dd357499071a722fffb 100644 (file)
@@ -91,7 +91,7 @@ libm-compat-calls =                                                   \
        w_lgammaF_r_compat w_lgammaF_compat2 w_expF_compat              \
        w_lgamma_compatF k_standardF
 
-libm-narrow-fns = add div mul sqrt sub
+libm-narrow-fns = add div fma mul sqrt sub
 libm-narrow-types-basic = s_fF s_f32xFf64
 libm-narrow-types-ldouble-yes = s_fFl s_dFl
 libm-narrow-types-float128-yes = s_f32Ff128 s_f64Ff128 s_f64xFf128
@@ -299,7 +299,7 @@ libm-test-funcs-noauto = canonicalize ceil cimag conj copysign cproj creal \
                         significand totalorder totalordermag trunc ufromfp \
                         ufromfpx compat_totalorder compat_totalordermag
 libm-test-funcs-compat = compat_totalorder compat_totalordermag
-libm-test-funcs-narrow = add div mul sqrt sub
+libm-test-funcs-narrow = add div fma mul sqrt sub
 libm-test-funcs-all = $(libm-test-funcs-auto) $(libm-test-funcs-noauto)
 libm-test-c-auto = $(foreach f,$(libm-test-funcs-auto),libm-test-$(f).c)
 libm-test-c-noauto = $(foreach f,$(libm-test-funcs-noauto),libm-test-$(f).c)
@@ -663,6 +663,7 @@ CFLAGS-s_ctan.c += -fno-builtin-ctanl
 CFLAGS-s_ctanh.c += -fno-builtin-ctanhl
 CFLAGS-s_dadd.c += -fno-builtin-daddl
 CFLAGS-s_ddiv.c += -fno-builtin-ddivl
+CFLAGS-s_dfma.c += -fno-builtin-dfmal
 CFLAGS-s_dmul.c += -fno-builtin-dmull
 CFLAGS-s_dsqrt.c += -fno-builtin-dsqrtl
 CFLAGS-s_dsub.c += -fno-builtin-dsubl
@@ -676,6 +677,7 @@ CFLAGS-s_fabs.c += -fno-builtin-fabsl
 CFLAGS-s_fadd.c += -fno-builtin-faddl
 CFLAGS-s_fdim.c += -fno-builtin-fdiml
 CFLAGS-s_fdiv.c += -fno-builtin-fdivl
+CFLAGS-s_ffma.c += -fno-builtin-ffmal
 CFLAGS-s_finite.c += -fno-builtin-finitel
 CFLAGS-s_floor.c += -fno-builtin-floorl
 CFLAGS-s_fma.c += -fno-builtin-fmal
index b121b454cd5b71b16dd8026428904d5f806937a0..1a25b2ce9a691f6958c515a3a235c7e65aa12d84 100644 (file)
@@ -595,9 +595,14 @@ libm {
   }
   GLIBC_2.35 {
     # Functions not involving _Float64x or _Float128, for all configurations.
+    ffma; ffmal; dfmal;
+    f32fmaf32x; f32fmaf64; f32xfmaf64;
     fsqrt; fsqrtl; dsqrtl;
     f32sqrtf32x; f32sqrtf64; f32xsqrtf64;
     # Functions involving _Float64x or _Float128, for some configurations.
+    f32fmaf64x; f32fmaf128;
+    f32xfmaf64x; f32xfmaf128; f64fmaf64x; f64fmaf128;
+    f64xfmaf128;
     f32sqrtf64x; f32sqrtf128;
     f32xsqrtf64x; f32xsqrtf128; f64sqrtf64x; f64sqrtf128;
     f64xsqrtf128;
index 0992344f7ff969802381fa2afd44cfc9fecb79c4..52a529682d231689f1e1f8b8f389bcbe37e75eae 100644 (file)
@@ -5463,15 +5463,16 @@ fma -1.0 -1.0 -1.0
 
 fma 0 0 1
 fma 0 0 2
-fma 0 0 max xfail-rounding:ibm128-libgcc
+fma 0 0 max xfail-rounding:ibm128-libgcc missing-errno
 fma 0 1 1
 fma 1 0 1
 fma 0 1 2
 fma 1 0 2
-fma 0 1 max xfail-rounding:ibm128-libgcc
-fma 1 0 max xfail-rounding:ibm128-libgcc
+fma 0 1 max xfail-rounding:ibm128-libgcc missing-errno
+fma 1 0 max xfail-rounding:ibm128-libgcc missing-errno
 
-# Bug 6801: errno setting may be missing.
+# Bug 6801: errno setting may be missing.  This applies to both plain
+# and narrowing fma, and is only commented here once.
 fma min min 0 missing-errno
 fma min min -0 missing-errno
 fma min -min 0 missing-errno
@@ -5481,7 +5482,6 @@ fma -min min -0 missing-errno
 fma -min -min 0 missing-errno
 fma -min -min -0 missing-errno
 
-# Bug 6801: errno setting may be missing.
 fma max max min missing-errno
 fma max max -min missing-errno
 fma max -max min missing-errno
@@ -5511,18 +5511,17 @@ fma 0x1p-149 -0x1p-149 0x1p127
 fma 0x1p-149 0x1p-149 -0x1p127
 fma 0x1p-149 -0x1p-149 -0x1p127
 fma 0x1p-149 0x1p-149 0x1p-126
-fma 0x1p-149 -0x1p-149 0x1p-126
-fma 0x1p-149 0x1p-149 -0x1p-126
+fma 0x1p-149 -0x1p-149 0x1p-126 missing-underflow:arg-ibm128
+fma 0x1p-149 0x1p-149 -0x1p-126 missing-underflow:arg-ibm128
 fma 0x1p-149 -0x1p-149 -0x1p-126
-fma 0x1p-149 0x1p-149 0x0.fffffep-126
-fma 0x1p-149 -0x1p-149 0x0.fffffep-126
-fma 0x1p-149 0x1p-149 -0x0.fffffep-126
-fma 0x1p-149 -0x1p-149 -0x0.fffffep-126
-fma 0x1p-149 0x1p-149 0x1p-149
-# Bug 6801: errno setting may be missing.
-fma 0x1p-149 -0x1p-149 0x1p-149 missing-errno
-fma 0x1p-149 0x1p-149 -0x1p-149 missing-errno
-fma 0x1p-149 -0x1p-149 -0x1p-149
+fma 0x1p-149 0x1p-149 0x0.fffffep-126 missing-underflow:arg-ibm128
+fma 0x1p-149 -0x1p-149 0x0.fffffep-126 missing-underflow:arg-ibm128
+fma 0x1p-149 0x1p-149 -0x0.fffffep-126 missing-underflow:arg-ibm128
+fma 0x1p-149 -0x1p-149 -0x0.fffffep-126 missing-underflow:arg-ibm128
+fma 0x1p-149 0x1p-149 0x1p-149 missing-underflow:arg-ibm128
+fma 0x1p-149 -0x1p-149 0x1p-149 missing-errno missing-underflow:arg-ibm128
+fma 0x1p-149 0x1p-149 -0x1p-149 missing-errno missing-underflow:arg-ibm128
+fma 0x1p-149 -0x1p-149 -0x1p-149 missing-underflow:arg-ibm128
 fma 0x0.fffp0 0x0.fffp0 -0x0.ffep0
 fma 0x0.fffp0 -0x0.fffp0 0x0.ffep0
 fma -0x0.fffp0 0x0.fffp0 0x0.ffep0
@@ -5541,172 +5540,167 @@ fma 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0
 fma 0x1.0000002p+0 0x1.ffffffcp-1 0x1p-300
 fma 0x1.0000002p+0 0x1.ffffffcp-1 -0x1p-300
 fma 0x1.deadbeef2feedp+1023 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp+1
-fma 0x1.deadbeef2feedp+900 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp-122
-fma 0x1.fffffffffffffp+1023 0x1.001p+0 -0x1.fffffffffffffp+1023
-fma -0x1.fffffffffffffp+1023 0x1.fffffffffffffp+0 0x1.fffffffffffffp+1023
-fma 0x1.fffffffffffffp+1023 2.0 -0x1.fffffffffffffp+1023
-# Bug 6801: errno setting may be missing.
+fma 0x1.deadbeef2feedp+900 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp-122 missing-errno
+fma 0x1.fffffffffffffp+1023 0x1.001p+0 -0x1.fffffffffffffp+1023 missing-errno
+fma -0x1.fffffffffffffp+1023 0x1.fffffffffffffp+0 0x1.fffffffffffffp+1023 missing-errno
+fma 0x1.fffffffffffffp+1023 2.0 -0x1.fffffffffffffp+1023 missing-errno
 fma 0x1.6a09e667f3bccp-538 0x1.6a09e667f3bccp-538 0.0 missing-errno
-fma 0x1.deadbeef2feedp-495 0x1.deadbeef2feedp-495 -0x1.bf86a5786a574p-989
-fma 0x1.deadbeef2feedp-503 0x1.deadbeef2feedp-503 -0x1.bf86a5786a574p-1005
-fma 0x1p-537 0x1p-538 0x1p-1074
-fma 0x1.7fffff8p-968 0x1p-106 0x0.000001p-1022
-fma 0x1.4000004p-967 0x1p-106 0x0.000001p-1022
-fma 0x1.4p-967 -0x1p-106 -0x0.000001p-1022
-fma -0x1.19cab66d73e17p-959 0x1.c7108a8c5ff51p-107 -0x0.80b0ad65d9b64p-1022
-fma -0x1.d2eaed6e8e9d3p-979 -0x1.4e066c62ac9ddp-63 -0x0.9245e6b003454p-1022
-fma 0x1.153d650bb9f06p-907 0x1.2d01230d48407p-125 -0x0.b278d5acfc3cp-1022
-fma -0x1.fffffffffffffp-711 0x1.fffffffffffffp-275 0x1.fffffe00007ffp-983
-fma 0x1.4p-1022 0x1.0000000000002p-1 0x1p-1024
-fma -0x1.4p-1022 0x1.0000000000002p-1 -0x1p-1024
-fma 0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 0x1p-1074
-fma -0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 -0x1p-1074
-fma 0x1p-1074 0x1p-1 0x0.fffffffffffffp-1022
-fma -0x1p-1074 0x1p-1 -0x0.fffffffffffffp-1022
-fma 0x1p-1074 0x1.1p-1 0x0.fffffffffffffp-1022
-fma -0x1p-1074 0x1.1p-1 -0x0.fffffffffffffp-1022
-fma 0x1p-1074 0x1p-1074 0x1p1023
-fma 0x1p-1074 -0x1p-1074 0x1p1023
-fma 0x1p-1074 0x1p-1074 -0x1p1023
-fma 0x1p-1074 -0x1p-1074 -0x1p1023
-fma 0x1p-1074 0x1p-1074 0x1p-1022
-fma 0x1p-1074 -0x1p-1074 0x1p-1022
-fma 0x1p-1074 0x1p-1074 -0x1p-1022
-fma 0x1p-1074 -0x1p-1074 -0x1p-1022
-fma 0x1p-1074 0x1p-1074 0x0.fffffffffffffp-1022
-fma 0x1p-1074 -0x1p-1074 0x0.fffffffffffffp-1022
-fma 0x1p-1074 0x1p-1074 -0x0.fffffffffffffp-1022
-fma 0x1p-1074 -0x1p-1074 -0x0.fffffffffffffp-1022
-fma 0x1p-1074 0x1p-1074 0x1p-1074
-# Bug 6801: errno setting may be missing.
+fma 0x1.deadbeef2feedp-495 0x1.deadbeef2feedp-495 -0x1.bf86a5786a574p-989 missing-errno
+fma 0x1.deadbeef2feedp-503 0x1.deadbeef2feedp-503 -0x1.bf86a5786a574p-1005 missing-errno
+fma 0x1p-537 0x1p-538 0x1p-1074 missing-errno
+fma 0x1.7fffff8p-968 0x1p-106 0x0.000001p-1022 missing-errno
+fma 0x1.4000004p-967 0x1p-106 0x0.000001p-1022 missing-errno
+fma 0x1.4p-967 -0x1p-106 -0x0.000001p-1022 missing-errno
+fma -0x1.19cab66d73e17p-959 0x1.c7108a8c5ff51p-107 -0x0.80b0ad65d9b64p-1022 missing-errno
+fma -0x1.d2eaed6e8e9d3p-979 -0x1.4e066c62ac9ddp-63 -0x0.9245e6b003454p-1022 missing-errno
+fma 0x1.153d650bb9f06p-907 0x1.2d01230d48407p-125 -0x0.b278d5acfc3cp-1022 missing-errno
+fma -0x1.fffffffffffffp-711 0x1.fffffffffffffp-275 0x1.fffffe00007ffp-983 missing-errno
+fma 0x1.4p-1022 0x1.0000000000002p-1 0x1p-1024 missing-errno
+fma -0x1.4p-1022 0x1.0000000000002p-1 -0x1p-1024 missing-errno
+fma 0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 0x1p-1074 missing-errno
+fma -0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 -0x1p-1074 missing-errno
+fma 0x1p-1074 0x1p-1 0x0.fffffffffffffp-1022 missing-errno
+fma -0x1p-1074 0x1p-1 -0x0.fffffffffffffp-1022 missing-errno
+fma 0x1p-1074 0x1.1p-1 0x0.fffffffffffffp-1022 missing-errno
+fma -0x1p-1074 0x1.1p-1 -0x0.fffffffffffffp-1022 missing-errno
+fma 0x1p-1074 0x1p-1074 0x1p1023 missing-errno
+fma 0x1p-1074 -0x1p-1074 0x1p1023 missing-errno
+fma 0x1p-1074 0x1p-1074 -0x1p1023 missing-errno
+fma 0x1p-1074 -0x1p-1074 -0x1p1023 missing-errno
+fma 0x1p-1074 0x1p-1074 0x1p-1022 missing-errno
+fma 0x1p-1074 -0x1p-1074 0x1p-1022 missing-errno
+fma 0x1p-1074 0x1p-1074 -0x1p-1022 missing-errno
+fma 0x1p-1074 -0x1p-1074 -0x1p-1022 missing-errno
+fma 0x1p-1074 0x1p-1074 0x0.fffffffffffffp-1022 missing-errno
+fma 0x1p-1074 -0x1p-1074 0x0.fffffffffffffp-1022 missing-errno
+fma 0x1p-1074 0x1p-1074 -0x0.fffffffffffffp-1022 missing-errno
+fma 0x1p-1074 -0x1p-1074 -0x0.fffffffffffffp-1022 missing-errno
+fma 0x1p-1074 0x1p-1074 0x1p-1074 missing-errno
 fma 0x1p-1074 -0x1p-1074 0x1p-1074 missing-errno
 fma 0x1p-1074 0x1p-1074 -0x1p-1074 missing-errno
-fma 0x1p-1074 -0x1p-1074 -0x1p-1074
+fma 0x1p-1074 -0x1p-1074 -0x1p-1074 missing-errno
 fma 0x0.fffffffffffff8p0 0x0.fffffffffffff8p0 -0x0.fffffffffffffp0
 fma 0x0.fffffffffffff8p0 -0x0.fffffffffffff8p0 0x0.fffffffffffffp0
 fma -0x0.fffffffffffff8p0 0x0.fffffffffffff8p0 0x0.fffffffffffffp0
 fma -0x0.fffffffffffff8p0 -0x0.fffffffffffff8p0 -0x0.fffffffffffffp0
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p1023
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p1023
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p1023
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p1023
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p970
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p970
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p970
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p970
-
-fma -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x8.3ffffffffffffffp-2450
-fma 0x9.fcp+2033 -0x8.000e1f000ff800fp-3613 -0xf.fffffffffffc0ffp-1579
-fma 0xc.7fc000003ffffffp-1194 0x8.1e0003fffffffffp+15327 -0x8.fffep+14072
-fma -0x8.0001fc000000003p+1798 0xcp-2230 0x8.f7e000000000007p-468
-fma 0xc.0000000000007ffp+10130 -0x8.000000000000001p+4430 0xc.07000000001ffffp+14513
-fma 0xb.ffffp-4777 0x8.000000fffffffffp-11612 -0x0.3800fff8p-16385
-fma 0x1.4p-16382 0x1.0000000000000004p-1 0x1p-16384
-fma -0x1.4p-16382 0x1.0000000000000004p-1 -0x1p-16384
-fma 0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 0x1p-16445
-fma -0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 -0x1p-16445
-fma 0x1p-16445 0x1p-1 0x0.fffffffffffffffep-16382
-fma -0x1p-16445 0x1p-1 -0x0.fffffffffffffffep-16382
-fma 0x1p-16445 0x1.1p-1 0x0.fffffffffffffffep-16382
-fma -0x1p-16445 0x1.1p-1 -0x0.fffffffffffffffep-16382
-fma 0x1p-16445 0x1p-16445 0x1p16383
-fma 0x1p-16445 -0x1p-16445 0x1p16383
-fma 0x1p-16445 0x1p-16445 -0x1p16383
-fma 0x1p-16445 -0x1p-16445 -0x1p16383
-fma 0x1p-16445 0x1p-16445 0x1p-16382
-fma 0x1p-16445 -0x1p-16445 0x1p-16382
-fma 0x1p-16445 0x1p-16445 -0x1p-16382
-fma 0x1p-16445 -0x1p-16445 -0x1p-16382
-fma 0x1p-16445 0x1p-16445 0x0.fffffffffffffffep-16382
-fma 0x1p-16445 -0x1p-16445 0x0.fffffffffffffffep-16382
-fma 0x1p-16445 0x1p-16445 -0x0.fffffffffffffffep-16382
-fma 0x1p-16445 -0x1p-16445 -0x0.fffffffffffffffep-16382
-fma 0x1p-16445 0x1p-16445 0x1p-16445
-# Bug 6801: errno setting may be missing.
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p1023 missing-errno
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p1023 missing-errno
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p1023 missing-errno
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p1023 missing-errno
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p970 missing-errno
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p970 missing-errno
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p970 missing-errno
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p970 missing-errno
+
+fma -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x8.3ffffffffffffffp-2450 missing-errno
+fma 0x9.fcp+2033 -0x8.000e1f000ff800fp-3613 -0xf.fffffffffffc0ffp-1579 missing-errno
+fma 0xc.7fc000003ffffffp-1194 0x8.1e0003fffffffffp+15327 -0x8.fffep+14072 missing-errno
+fma -0x8.0001fc000000003p+1798 0xcp-2230 0x8.f7e000000000007p-468 missing-errno
+fma 0xc.0000000000007ffp+10130 -0x8.000000000000001p+4430 0xc.07000000001ffffp+14513 missing-errno
+fma 0xb.ffffp-4777 0x8.000000fffffffffp-11612 -0x0.3800fff8p-16385 missing-errno
+fma 0x1.4p-16382 0x1.0000000000000004p-1 0x1p-16384 missing-errno
+fma -0x1.4p-16382 0x1.0000000000000004p-1 -0x1p-16384 missing-errno
+fma 0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 0x1p-16445 missing-errno
+fma -0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 -0x1p-16445 missing-errno
+fma 0x1p-16445 0x1p-1 0x0.fffffffffffffffep-16382 missing-errno
+fma -0x1p-16445 0x1p-1 -0x0.fffffffffffffffep-16382 missing-errno
+fma 0x1p-16445 0x1.1p-1 0x0.fffffffffffffffep-16382 missing-errno
+fma -0x1p-16445 0x1.1p-1 -0x0.fffffffffffffffep-16382 missing-errno
+fma 0x1p-16445 0x1p-16445 0x1p16383 missing-errno
+fma 0x1p-16445 -0x1p-16445 0x1p16383 missing-errno
+fma 0x1p-16445 0x1p-16445 -0x1p16383 missing-errno
+fma 0x1p-16445 -0x1p-16445 -0x1p16383 missing-errno
+fma 0x1p-16445 0x1p-16445 0x1p-16382 missing-errno
+fma 0x1p-16445 -0x1p-16445 0x1p-16382 missing-errno
+fma 0x1p-16445 0x1p-16445 -0x1p-16382 missing-errno
+fma 0x1p-16445 -0x1p-16445 -0x1p-16382 missing-errno
+fma 0x1p-16445 0x1p-16445 0x0.fffffffffffffffep-16382 missing-errno
+fma 0x1p-16445 -0x1p-16445 0x0.fffffffffffffffep-16382 missing-errno
+fma 0x1p-16445 0x1p-16445 -0x0.fffffffffffffffep-16382 missing-errno
+fma 0x1p-16445 -0x1p-16445 -0x0.fffffffffffffffep-16382 missing-errno
+fma 0x1p-16445 0x1p-16445 0x1p-16445 missing-errno
 fma 0x1p-16445 -0x1p-16445 0x1p-16445 missing-errno
 fma 0x1p-16445 0x1p-16445 -0x1p-16445 missing-errno
-fma 0x1p-16445 -0x1p-16445 -0x1p-16445
+fma 0x1p-16445 -0x1p-16445 -0x1p-16445 missing-errno
 fma 0x0.ffffffffffffffffp0 0x0.ffffffffffffffffp0 -0x0.fffffffffffffffep0
 fma 0x0.ffffffffffffffffp0 -0x0.ffffffffffffffffp0 0x0.fffffffffffffffep0
 fma -0x0.ffffffffffffffffp0 0x0.ffffffffffffffffp0 0x0.fffffffffffffffep0
 fma -0x0.ffffffffffffffffp0 -0x0.ffffffffffffffffp0 -0x0.fffffffffffffffep0
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16383
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16383
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16383
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16383
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16319
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16319
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16319
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16319
-
-fma 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0x1.6b500daf0580d987f1bc0cadfcddp-13777 0x1.613cd91d9fed34b33820e5ab9d8dp-16378
-fma -0x1.f949b880cacb0f0c61540105321dp-5954 -0x1.3876cec84b4140f3bd6198731b7ep-10525 -0x0.a5dc1c6cfbc498c54fb0b504bf19p-16382
-fma -0x1.0000fffffffffp-16221 0x1.0000001fffff8007fep-239 0x0.ff87ffffffffffffe000003fffffp-16382
-fma -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x1.5ba830022b6139e21fbe7270cad8p-6314 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616
-fma -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0x1.f34235ff9d095449c29b4831b62dp+3311 0x1.fbe4302df23354dbd0c4d3cfe606p+5879
-fma -0x1.ca8835fc6ecfb5398625fc891be5p-1686 0x1.621e1972bbe2180e5be9dd7d8df5p-7671 -0x1.7d2d21b73b52cf20dec2a83902a4p-9395
-fma -0x1.55cff679ec49c2541fab41fc843ep-11819 0x1.e60e9f464f9e8df0509647c7c971p+12325 0x1.eaa2a7649d765c2f564f7a5beca7p+454
-fma 0x1.f0e7b1454908576f2537d863cf9bp+11432 0x1.cdce52f09d4ca76e68706f34b5d5p-1417 -0x1.2e986187c70f146235ea2066e486p+9979
-fma 0x1.f102f7da4a57a3a4aab620e29452p-3098 -0x1.cc06a4ff40248f9e2dcc4b6afd84p-11727 0x1.d512a11126b5ac8ed8973b8580c8p-14849
-fma -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0x1.fbc9750da8468852d84558e1db6dp-5773 -0x1.00a98abf783f75c40fe5b7a37d86p-9607
-fma 0x1.00000000000007ffffffffffffffp-9045 -0x1.ffffffffffff80000001ffffffffp+4773 -0x1.f8p-4316
-fma 0x1.4e922764c90701d4a2f21d01893dp-8683 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0x1.e9634462eaef96528b90b6944578p-8521
-fma 0x1.801181509c03bdbef10d6165588cp-15131 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x1.6e9df0dab1c9f1d7a6043c390741p-15507
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16383 missing-errno
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16383 missing-errno
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16383 missing-errno
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16383 missing-errno
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16319 missing-errno
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16319 missing-errno
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16319 missing-errno
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16319 missing-errno
+
+fma 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0x1.6b500daf0580d987f1bc0cadfcddp-13777 0x1.613cd91d9fed34b33820e5ab9d8dp-16378 missing-errno
+fma -0x1.f949b880cacb0f0c61540105321dp-5954 -0x1.3876cec84b4140f3bd6198731b7ep-10525 -0x0.a5dc1c6cfbc498c54fb0b504bf19p-16382 missing-errno
+fma -0x1.0000fffffffffp-16221 0x1.0000001fffff8007fep-239 0x0.ff87ffffffffffffe000003fffffp-16382 missing-errno
+fma -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x1.5ba830022b6139e21fbe7270cad8p-6314 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 missing-errno
+fma -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0x1.f34235ff9d095449c29b4831b62dp+3311 0x1.fbe4302df23354dbd0c4d3cfe606p+5879 missing-errno
+fma -0x1.ca8835fc6ecfb5398625fc891be5p-1686 0x1.621e1972bbe2180e5be9dd7d8df5p-7671 -0x1.7d2d21b73b52cf20dec2a83902a4p-9395 missing-errno
+fma -0x1.55cff679ec49c2541fab41fc843ep-11819 0x1.e60e9f464f9e8df0509647c7c971p+12325 0x1.eaa2a7649d765c2f564f7a5beca7p+454 missing-errno
+fma 0x1.f0e7b1454908576f2537d863cf9bp+11432 0x1.cdce52f09d4ca76e68706f34b5d5p-1417 -0x1.2e986187c70f146235ea2066e486p+9979 missing-errno
+fma 0x1.f102f7da4a57a3a4aab620e29452p-3098 -0x1.cc06a4ff40248f9e2dcc4b6afd84p-11727 0x1.d512a11126b5ac8ed8973b8580c8p-14849 missing-errno
+fma -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0x1.fbc9750da8468852d84558e1db6dp-5773 -0x1.00a98abf783f75c40fe5b7a37d86p-9607 missing-errno
+fma 0x1.00000000000007ffffffffffffffp-9045 -0x1.ffffffffffff80000001ffffffffp+4773 -0x1.f8p-4316 missing-errno
+fma 0x1.4e922764c90701d4a2f21d01893dp-8683 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0x1.e9634462eaef96528b90b6944578p-8521 missing-errno
+fma 0x1.801181509c03bdbef10d6165588cp-15131 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x1.6e9df0dab1c9f1d7a6043c390741p-15507 missing-errno
 fma 0x1.ffffffffffffffp0 0x1.000000000000008p0 -0x1p-1000
-fma 0x1.4p-16382 0x1.0000000000000000000000000002p-1 0x1p-16384
-fma -0x1.4p-16382 0x1.0000000000000000000000000002p-1 -0x1p-16384
-fma 0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 0x1p-16494
-fma -0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 -0x1p-16494
-fma 0x1p-16494 0x1p-1 0x0.ffffffffffffffffffffffffffffp-16382
-fma -0x1p-16494 0x1p-1 -0x0.ffffffffffffffffffffffffffffp-16382
-fma 0x1p-16494 0x1.1p-1 0x0.ffffffffffffffffffffffffffffp-16382
-fma -0x1p-16494 0x1.1p-1 -0x0.ffffffffffffffffffffffffffffp-16382
-fma 0x1p-16494 0x1p-16494 0x1p16383
-fma 0x1p-16494 -0x1p-16494 0x1p16383
-fma 0x1p-16494 0x1p-16494 -0x1p16383
-fma 0x1p-16494 -0x1p-16494 -0x1p16383
-fma 0x1p-16494 0x1p-16494 0x1p-16382
-fma 0x1p-16494 -0x1p-16494 0x1p-16382
-fma 0x1p-16494 0x1p-16494 -0x1p-16382
-fma 0x1p-16494 -0x1p-16494 -0x1p-16382
-fma 0x1p-16494 0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382
-fma 0x1p-16494 -0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382
-fma 0x1p-16494 0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382
-fma 0x1p-16494 -0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382
-fma 0x1p-16494 0x1p-16494 0x1p-16494
-# Bug 6801: errno setting may be missing.
+fma 0x1.4p-16382 0x1.0000000000000000000000000002p-1 0x1p-16384 missing-errno
+fma -0x1.4p-16382 0x1.0000000000000000000000000002p-1 -0x1p-16384 missing-errno
+fma 0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 0x1p-16494 missing-errno
+fma -0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 -0x1p-16494 missing-errno
+fma 0x1p-16494 0x1p-1 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma -0x1p-16494 0x1p-1 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma 0x1p-16494 0x1.1p-1 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma -0x1p-16494 0x1.1p-1 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma 0x1p-16494 0x1p-16494 0x1p16383 missing-errno
+fma 0x1p-16494 -0x1p-16494 0x1p16383 missing-errno
+fma 0x1p-16494 0x1p-16494 -0x1p16383 missing-errno
+fma 0x1p-16494 -0x1p-16494 -0x1p16383 missing-errno
+fma 0x1p-16494 0x1p-16494 0x1p-16382 missing-errno
+fma 0x1p-16494 -0x1p-16494 0x1p-16382 missing-errno
+fma 0x1p-16494 0x1p-16494 -0x1p-16382 missing-errno
+fma 0x1p-16494 -0x1p-16494 -0x1p-16382 missing-errno
+fma 0x1p-16494 0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma 0x1p-16494 -0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma 0x1p-16494 0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma 0x1p-16494 -0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+fma 0x1p-16494 0x1p-16494 0x1p-16494 missing-errno
 fma 0x1p-16494 -0x1p-16494 0x1p-16494 missing-errno
 fma 0x1p-16494 0x1p-16494 -0x1p-16494 missing-errno
-fma 0x1p-16494 -0x1p-16494 -0x1p-16494
-fma 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0
-fma 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0
-fma -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0
-fma -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16383
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16383
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16383
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16383
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16319
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16319
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16319
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16319
-
-# Bug 6801: errno setting may be missing.
-fma 0x1.fffffep-126 0x1.fffffep25 0x1.fffffep127 missing-errno
+fma 0x1p-16494 -0x1p-16494 -0x1p-16494 missing-errno
+fma 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0 missing-errno
+fma 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0 missing-errno
+fma -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0 missing-errno
+fma -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16383 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16383 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16383 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16383 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16319 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16319 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16319 missing-errno
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16319 missing-errno
+
+fma 0x1.fffffep-126 0x1.fffffep25 0x1.fffffep127 missing-errno xfail-rounding:ibm128-libgcc
 fma 0x1.fffffep-126 -0x1.fffffep25 0x1.fffffep127
 fma 0x1.fffffep-126 0x1.fffffep25 -0x1.fffffep127
-fma 0x1.fffffep-126 -0x1.fffffep25 -0x1.fffffep127 missing-errno
-fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-errno
-fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 0x1.fffffffffffffp1023
-fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 -0x1.fffffffffffffp1023
-fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 -0x1.fffffffffffffp1023 missing-errno
+fma 0x1.fffffep-126 -0x1.fffffep25 -0x1.fffffep127 missing-errno xfail-rounding:ibm128-libgcc
+fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-errno xfail-rounding:ibm128-libgcc
+fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-errno
+fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 -0x1.fffffffffffffp1023 missing-errno
+fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 -0x1.fffffffffffffp1023 missing-errno xfail-rounding:ibm128-libgcc
 fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383 missing-errno
-fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383
-fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383
+fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383 missing-errno
+fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383 missing-errno
 fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383 missing-errno
 fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383 missing-errno
-fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383
-fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383
+fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383 missing-errno
+fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383 missing-errno
 fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383 missing-errno
 
 hypot 0 0
index d77fd222ddf7fc59870ec15a49ac6265e37ead5a..438fcb61da733e3ec1d9128ea22431d07ec89b31 100644 (file)
@@ -798,7 +798,7 @@ fma 0 0 2
 = fma tonearest ibm128 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
 = fma towardzero ibm128 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
 = fma upward ibm128 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
-fma 0 0 max xfail-rounding:ibm128-libgcc
+fma 0 0 max xfail-rounding:ibm128-libgcc missing-errno
 = fma downward binary32 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
 = fma tonearest binary32 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
 = fma towardzero binary32 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
@@ -967,7 +967,7 @@ fma 1 0 2
 = fma tonearest ibm128 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
 = fma towardzero ibm128 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
 = fma upward ibm128 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
-fma 0 1 max xfail-rounding:ibm128-libgcc
+fma 0 1 max xfail-rounding:ibm128-libgcc missing-errno
 = fma downward binary32 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
 = fma tonearest binary32 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
 = fma towardzero binary32 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
@@ -1036,7 +1036,7 @@ fma 0 1 max xfail-rounding:ibm128-libgcc
 = fma tonearest ibm128 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
 = fma towardzero ibm128 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
 = fma upward ibm128 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
-fma 1 0 max xfail-rounding:ibm128-libgcc
+fma 1 0 max xfail-rounding:ibm128-libgcc missing-errno
 = fma downward binary32 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
 = fma tonearest binary32 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
 = fma towardzero binary32 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
@@ -13469,7 +13469,7 @@ fma 0x1.deadbeef2feedp+1023 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp+1
 = fma tonearest ibm128 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
 = fma towardzero ibm128 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
 = fma upward ibm128 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
-fma 0x1.deadbeef2feedp+900 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp-122
+fma 0x1.deadbeef2feedp+900 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp-122 missing-errno
 = fma downward binary64 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
 = fma tonearest binary64 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
 = fma towardzero binary64 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
@@ -13490,7 +13490,7 @@ fma 0x1.deadbeef2feedp+900 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp-122
 = fma tonearest ibm128 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
 = fma towardzero ibm128 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
 = fma upward ibm128 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
-fma 0x1.fffffffffffffp+1023 0x1.001p+0 -0x1.fffffffffffffp+1023
+fma 0x1.fffffffffffffp+1023 0x1.001p+0 -0x1.fffffffffffffp+1023 missing-errno
 = fma downward binary64 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
 = fma tonearest binary64 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
 = fma towardzero binary64 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
@@ -13511,7 +13511,7 @@ fma 0x1.fffffffffffffp+1023 0x1.001p+0 -0x1.fffffffffffffp+1023
 = fma tonearest ibm128 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
 = fma towardzero ibm128 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
 = fma upward ibm128 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
-fma -0x1.fffffffffffffp+1023 0x1.fffffffffffffp+0 0x1.fffffffffffffp+1023
+fma -0x1.fffffffffffffp+1023 0x1.fffffffffffffp+0 0x1.fffffffffffffp+1023 missing-errno
 = fma downward binary64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.ffffffffffffp+1020 : inexact
 = fma tonearest binary64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
 = fma towardzero binary64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
@@ -13532,7 +13532,7 @@ fma -0x1.fffffffffffffp+1023 0x1.fffffffffffffp+0 0x1.fffffffffffffp+1023
 = fma tonearest ibm128 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
 = fma towardzero ibm128 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
 = fma upward ibm128 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
-fma 0x1.fffffffffffffp+1023 2.0 -0x1.fffffffffffffp+1023
+fma 0x1.fffffffffffffp+1023 2.0 -0x1.fffffffffffffp+1023 missing-errno
 = fma downward binary64 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
 = fma tonearest binary64 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
 = fma towardzero binary64 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
@@ -13574,7 +13574,7 @@ fma 0x1.6a09e667f3bccp-538 0x1.6a09e667f3bccp-538 0.0 missing-errno
 = fma tonearest ibm128 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
 = fma towardzero ibm128 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
 = fma upward ibm128 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
-fma 0x1.deadbeef2feedp-495 0x1.deadbeef2feedp-495 -0x1.bf86a5786a574p-989
+fma 0x1.deadbeef2feedp-495 0x1.deadbeef2feedp-495 -0x1.bf86a5786a574p-989 missing-errno
 = fma downward binary64 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
@@ -13595,7 +13595,7 @@ fma 0x1.deadbeef2feedp-495 0x1.deadbeef2feedp-495 -0x1.bf86a5786a574p-989
 = fma tonearest ibm128 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
-fma 0x1.deadbeef2feedp-503 0x1.deadbeef2feedp-503 -0x1.bf86a5786a574p-1005
+fma 0x1.deadbeef2feedp-503 0x1.deadbeef2feedp-503 -0x1.bf86a5786a574p-1005 missing-errno
 = fma downward binary64 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
@@ -13616,7 +13616,7 @@ fma 0x1.deadbeef2feedp-503 0x1.deadbeef2feedp-503 -0x1.bf86a5786a574p-1005
 = fma tonearest ibm128 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.098cp-1060 : inexact underflow errno-erange-ok
-fma 0x1p-537 0x1p-538 0x1p-1074
+fma 0x1p-537 0x1p-538 0x1p-1074 missing-errno
 = fma downward binary64 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
@@ -13637,7 +13637,7 @@ fma 0x1p-537 0x1p-538 0x1p-1074
 = fma tonearest ibm128 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
-fma 0x1.7fffff8p-968 0x1p-106 0x0.000001p-1022
+fma 0x1.7fffff8p-968 0x1p-106 0x0.000001p-1022 missing-errno
 = fma downward binary64 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
@@ -13658,7 +13658,7 @@ fma 0x1.7fffff8p-968 0x1p-106 0x0.000001p-1022
 = fma tonearest ibm128 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
-fma 0x1.4000004p-967 0x1p-106 0x0.000001p-1022
+fma 0x1.4000004p-967 0x1p-106 0x0.000001p-1022 missing-errno
 = fma downward binary64 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
@@ -13679,7 +13679,7 @@ fma 0x1.4000004p-967 0x1p-106 0x0.000001p-1022
 = fma tonearest ibm128 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
-fma 0x1.4p-967 -0x1p-106 -0x0.000001p-1022
+fma 0x1.4p-967 -0x1p-106 -0x0.000001p-1022 missing-errno
 = fma downward binary64 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000cp-1048 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
@@ -13700,7 +13700,7 @@ fma 0x1.4p-967 -0x1p-106 -0x0.000001p-1022
 = fma tonearest ibm128 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
-fma -0x1.19cab66d73e17p-959 0x1.c7108a8c5ff51p-107 -0x0.80b0ad65d9b64p-1022
+fma -0x1.19cab66d73e17p-959 0x1.c7108a8c5ff51p-107 -0x0.80b0ad65d9b64p-1022 missing-errno
 = fma downward binary64 -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
@@ -13721,7 +13721,7 @@ fma -0x1.19cab66d73e17p-959 0x1.c7108a8c5ff51p-107 -0x0.80b0ad65d9b64p-1022
 = fma tonearest ibm128 -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
-fma -0x1.d2eaed6e8e9d3p-979 -0x1.4e066c62ac9ddp-63 -0x0.9245e6b003454p-1022
+fma -0x1.d2eaed6e8e9d3p-979 -0x1.4e066c62ac9ddp-63 -0x0.9245e6b003454p-1022 missing-errno
 = fma downward binary64 -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed78p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
@@ -13742,7 +13742,7 @@ fma -0x1.d2eaed6e8e9d3p-979 -0x1.4e066c62ac9ddp-63 -0x0.9245e6b003454p-1022
 = fma tonearest ibm128 -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
-fma 0x1.153d650bb9f06p-907 0x1.2d01230d48407p-125 -0x0.b278d5acfc3cp-1022
+fma 0x1.153d650bb9f06p-907 0x1.2d01230d48407p-125 -0x0.b278d5acfc3cp-1022 missing-errno
 = fma downward binary64 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
@@ -13763,7 +13763,7 @@ fma 0x1.153d650bb9f06p-907 0x1.2d01230d48407p-125 -0x0.b278d5acfc3cp-1022
 = fma tonearest ibm128 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
-fma -0x1.fffffffffffffp-711 0x1.fffffffffffffp-275 0x1.fffffe00007ffp-983
+fma -0x1.fffffffffffffp-711 0x1.fffffffffffffp-275 0x1.fffffe00007ffp-983 missing-errno
 = fma downward binary64 -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffep-984 : inexact
 = fma tonearest binary64 -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffep-984 : inexact
 = fma towardzero binary64 -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffep-984 : inexact
@@ -13784,7 +13784,7 @@ fma -0x1.fffffffffffffp-711 0x1.fffffffffffffp-275 0x1.fffffe00007ffp-983
 = fma tonearest ibm128 -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffcp-984 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact underflow errno-erange-ok
-fma 0x1.4p-1022 0x1.0000000000002p-1 0x1p-1024
+fma 0x1.4p-1022 0x1.0000000000002p-1 0x1p-1024 missing-errno
 = fma downward binary64 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
@@ -13805,7 +13805,7 @@ fma 0x1.4p-1022 0x1.0000000000002p-1 0x1p-1024
 = fma tonearest ibm128 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000008p-1024 : inexact underflow errno-erange-ok
-fma -0x1.4p-1022 0x1.0000000000002p-1 -0x1p-1024
+fma -0x1.4p-1022 0x1.0000000000002p-1 -0x1p-1024 missing-errno
 = fma downward binary64 -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000008p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
@@ -13826,7 +13826,7 @@ fma -0x1.4p-1022 0x1.0000000000002p-1 -0x1p-1024
 = fma tonearest ibm128 -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
-fma 0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 0x1p-1074
+fma 0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 0x1p-1074 missing-errno
 = fma downward binary64 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary64 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -13847,7 +13847,7 @@ fma 0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 0x1p-1074
 = fma tonearest ibm128 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow errno-erange-ok
-fma -0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 -0x1p-1074
+fma -0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 -0x1p-1074 missing-errno
 = fma downward binary64 -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest binary64 -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary64 -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -13868,7 +13868,7 @@ fma -0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 -0x1p-1074
 = fma tonearest ibm128 -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1p-1 0x0.fffffffffffffp-1022
+fma 0x1p-1074 0x1p-1 0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -13889,7 +13889,7 @@ fma 0x1p-1074 0x1p-1 0x0.fffffffffffffp-1022
 = fma tonearest ibm128 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
-fma -0x1p-1074 0x1p-1 -0x0.fffffffffffffp-1022
+fma -0x1p-1074 0x1p-1 -0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -13910,7 +13910,7 @@ fma -0x1p-1074 0x1p-1 -0x0.fffffffffffffp-1022
 = fma tonearest ibm128 -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1.1p-1 0x0.fffffffffffffp-1022
+fma 0x1p-1074 0x1.1p-1 0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -13931,7 +13931,7 @@ fma 0x1p-1074 0x1.1p-1 0x0.fffffffffffffp-1022
 = fma tonearest ibm128 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
-fma -0x1p-1074 0x1.1p-1 -0x0.fffffffffffffp-1022
+fma -0x1p-1074 0x1.1p-1 -0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest binary64 -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -13952,7 +13952,7 @@ fma -0x1p-1074 0x1.1p-1 -0x0.fffffffffffffp-1022
 = fma tonearest ibm128 -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1p-1074 0x1p1023
+fma 0x1p-1074 0x1p-1074 0x1p1023 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
 = fma tonearest binary64 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero binary64 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
@@ -13973,7 +13973,7 @@ fma 0x1p-1074 0x1p-1074 0x1p1023
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
 = fma upward ibm128 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8.00000000000000000000000004p+1020 : inexact
-fma 0x1p-1074 -0x1p-1074 0x1p1023
+fma 0x1p-1074 -0x1p-1074 0x1p1023 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
@@ -13994,7 +13994,7 @@ fma 0x1p-1074 -0x1p-1074 0x1p1023
 = fma tonearest ibm128 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero ibm128 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffffffffffffffep+1020 : inexact
 = fma upward ibm128 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
-fma 0x1p-1074 0x1p-1074 -0x1p1023
+fma 0x1p-1074 0x1p-1074 -0x1p1023 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
 = fma tonearest binary64 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero binary64 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.ffffffffffffcp+1020 : inexact
@@ -14015,7 +14015,7 @@ fma 0x1p-1074 0x1p-1074 -0x1p1023
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
 = fma upward ibm128 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
-fma 0x1p-1074 -0x1p-1074 -0x1p1023
+fma 0x1p-1074 -0x1p-1074 -0x1p1023 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8.0000000000008p+1020 : inexact
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
@@ -14036,7 +14036,7 @@ fma 0x1p-1074 -0x1p-1074 -0x1p1023
 = fma tonearest ibm128 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero ibm128 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
 = fma upward ibm128 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
-fma 0x1p-1074 0x1p-1074 0x1p-1022
+fma 0x1p-1074 0x1p-1074 0x1p-1022 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
 = fma tonearest binary64 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
 = fma towardzero binary64 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
@@ -14057,7 +14057,7 @@ fma 0x1p-1074 0x1p-1074 0x1p-1022
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4.0000000000004p-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 -0x1p-1074 0x1p-1022
+fma 0x1p-1074 -0x1p-1074 0x1p-1022 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -14078,7 +14078,7 @@ fma 0x1p-1074 -0x1p-1074 0x1p-1022
 = fma tonearest ibm128 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1p-1074 -0x1p-1022
+fma 0x1p-1074 0x1p-1074 -0x1p-1022 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest binary64 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary64 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -14099,7 +14099,7 @@ fma 0x1p-1074 0x1p-1074 -0x1p-1022
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 -0x1p-1074 -0x1p-1022
+fma 0x1p-1074 -0x1p-1074 -0x1p-1022 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4.0000000000004p-1024 : inexact
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
@@ -14120,7 +14120,7 @@ fma 0x1p-1074 -0x1p-1074 -0x1p-1022
 = fma tonearest ibm128 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1p-1074 0x0.fffffffffffffp-1022
+fma 0x1p-1074 0x1p-1074 0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -14141,7 +14141,7 @@ fma 0x1p-1074 0x1p-1074 0x0.fffffffffffffp-1022
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 -0x1p-1074 0x0.fffffffffffffp-1022
+fma 0x1p-1074 -0x1p-1074 0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
@@ -14162,7 +14162,7 @@ fma 0x1p-1074 -0x1p-1074 0x0.fffffffffffffp-1022
 = fma tonearest ibm128 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1p-1074 -0x0.fffffffffffffp-1022
+fma 0x1p-1074 0x1p-1074 -0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
@@ -14183,7 +14183,7 @@ fma 0x1p-1074 0x1p-1074 -0x0.fffffffffffffp-1022
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 -0x1p-1074 -0x0.fffffffffffffp-1022
+fma 0x1p-1074 -0x1p-1074 -0x0.fffffffffffffp-1022 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
@@ -14204,7 +14204,7 @@ fma 0x1p-1074 -0x1p-1074 -0x0.fffffffffffffp-1022
 = fma tonearest ibm128 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
 = fma upward ibm128 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
-fma 0x1p-1074 0x1p-1074 0x1p-1074
+fma 0x1p-1074 0x1p-1074 0x1p-1074 missing-errno
 = fma downward binary64 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
@@ -14267,7 +14267,7 @@ fma 0x1p-1074 0x1p-1074 -0x1p-1074 missing-errno
 = fma tonearest ibm128 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
 = fma towardzero ibm128 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
 = fma upward ibm128 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
-fma 0x1p-1074 -0x1p-1074 -0x1p-1074
+fma 0x1p-1074 -0x1p-1074 -0x1p-1074 missing-errno
 = fma downward binary64 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x8p-1076 : inexact underflow errno-erange-ok
 = fma tonearest binary64 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
 = fma towardzero binary64 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
@@ -14372,7 +14372,7 @@ fma -0x0.fffffffffffff8p0 -0x0.fffffffffffff8p0 -0x0.fffffffffffffp0
 = fma tonearest ibm128 -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
 = fma towardzero ibm128 -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
 = fma upward ibm128 -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p1023
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p1023 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
@@ -14393,7 +14393,7 @@ fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p1023
 = fma tonearest ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8.00000000000000000000000004p+1020 : inexact
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p1023
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p1023 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
@@ -14414,7 +14414,7 @@ fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p1023
 = fma tonearest ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffffffffffffffep+1020 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p1023
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p1023 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.ffffffffffffcp+1020 : inexact
@@ -14435,7 +14435,7 @@ fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p1023
 = fma tonearest ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p1023
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p1023 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8.0000000000008p+1020 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
@@ -14456,7 +14456,7 @@ fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p1023
 = fma tonearest ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p970
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p970 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
@@ -14477,7 +14477,7 @@ fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p970
 = fma tonearest ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4.00000000000000000000000002p+968 : inexact
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p970
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p970 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffep+968 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffep+968 : inexact
@@ -14498,7 +14498,7 @@ fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p970
 = fma tonearest ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffffffffffffffffp+968 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
-fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p970
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p970 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffep+968 : inexact
@@ -14519,7 +14519,7 @@ fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p970
 = fma tonearest ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffffffffffffffffp+968 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffffffffffffffffp+968 : inexact
-fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p970
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p970 missing-errno
 = fma downward binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4.0000000000004p+968 : inexact
 = fma tonearest binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
 = fma towardzero binary64 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
@@ -14540,7 +14540,7 @@ fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p970
 = fma tonearest ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
 = fma towardzero ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
 = fma upward ibm128 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
-fma -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x8.3ffffffffffffffp-2450
+fma -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x8.3ffffffffffffffp-2450 missing-errno
 = fma downward intel96 -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ecp-2440 : inexact
 = fma tonearest intel96 -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ecp-2440 : inexact
 = fma towardzero intel96 -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffffp-2440 : inexact
@@ -14553,7 +14553,7 @@ fma -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x8.3ffffffffffffffp-2450
 = fma tonearest binary128 -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
 = fma towardzero binary128 -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
 = fma upward binary128 -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
-fma 0x9.fcp+2033 -0x8.000e1f000ff800fp-3613 -0xf.fffffffffffc0ffp-1579
+fma 0x9.fcp+2033 -0x8.000e1f000ff800fp-3613 -0xf.fffffffffffc0ffp-1579 missing-errno
 = fma downward intel96 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68498p-1576 : inexact
 = fma tonearest intel96 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
 = fma towardzero intel96 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
@@ -14566,7 +14566,7 @@ fma 0x9.fcp+2033 -0x8.000e1f000ff800fp-3613 -0xf.fffffffffffc0ffp-1579
 = fma tonearest binary128 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
 = fma towardzero binary128 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
 = fma upward binary128 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
-fma 0xc.7fc000003ffffffp-1194 0x8.1e0003fffffffffp+15327 -0x8.fffep+14072
+fma 0xc.7fc000003ffffffp-1194 0x8.1e0003fffffffffp+15327 -0x8.fffep+14072 missing-errno
 = fma downward intel96 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffep+14136 : inexact
 = fma tonearest intel96 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020effffp+14136 : inexact
 = fma towardzero intel96 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffep+14136 : inexact
@@ -14579,7 +14579,7 @@ fma 0xc.7fc000003ffffffp-1194 0x8.1e0003fffffffffp+15327 -0x8.fffep+14072
 = fma tonearest binary128 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8p+14136 : inexact
 = fma towardzero binary128 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8p+14136 : inexact
 = fma upward binary128 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8008p+14136 : inexact
-fma -0x8.0001fc000000003p+1798 0xcp-2230 0x8.f7e000000000007p-468
+fma -0x8.0001fc000000003p+1798 0xcp-2230 0x8.f7e000000000007p-468 missing-errno
 = fma downward intel96 -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082028p-428 : inexact
 = fma tonearest intel96 -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
 = fma towardzero intel96 -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
@@ -14592,7 +14592,7 @@ fma -0x8.0001fc000000003p+1798 0xcp-2230 0x8.f7e000000000007p-468
 = fma tonearest binary128 -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
 = fma towardzero binary128 -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
 = fma upward binary128 -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
-fma 0xc.0000000000007ffp+10130 -0x8.000000000000001p+4430 0xc.07000000001ffffp+14513
+fma 0xc.0000000000007ffp+10130 -0x8.000000000000001p+4430 0xc.07000000001ffffp+14513 missing-errno
 = fma downward intel96 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf28p+14564 : inexact
 = fma tonearest intel96 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
 = fma towardzero intel96 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
@@ -14605,7 +14605,7 @@ fma 0xc.0000000000007ffp+10130 -0x8.000000000000001p+4430 0xc.07000000001ffffp+1
 = fma tonearest binary128 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffc0004p+14564 : inexact
 = fma towardzero binary128 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffcp+14564 : inexact
 = fma upward binary128 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffcp+14564 : inexact
-fma 0xb.ffffp-4777 0x8.000000fffffffffp-11612 -0x0.3800fff8p-16385
+fma 0xb.ffffp-4777 0x8.000000fffffffffp-11612 -0x0.3800fff8p-16385 missing-errno
 = fma downward intel96 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact underflow errno-erange-ok
@@ -14618,7 +14618,7 @@ fma 0xb.ffffp-4777 0x8.000000fffffffffp-11612 -0x0.3800fff8p-16385
 = fma tonearest binary128 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
 = fma towardzero binary128 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
 = fma upward binary128 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
-fma 0x1.4p-16382 0x1.0000000000000004p-1 0x1p-16384
+fma 0x1.4p-16382 0x1.0000000000000004p-1 0x1p-16384 missing-errno
 = fma downward intel96 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
@@ -14631,7 +14631,7 @@ fma 0x1.4p-16382 0x1.0000000000000004p-1 0x1p-16384
 = fma tonearest binary128 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
 = fma towardzero binary128 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
 = fma upward binary128 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
-fma -0x1.4p-16382 0x1.0000000000000004p-1 -0x1p-16384
+fma -0x1.4p-16382 0x1.0000000000000004p-1 -0x1p-16384 missing-errno
 = fma downward intel96 -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000001p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
@@ -14644,7 +14644,7 @@ fma -0x1.4p-16382 0x1.0000000000000004p-1 -0x1p-16384
 = fma tonearest binary128 -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
 = fma towardzero binary128 -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
 = fma upward binary128 -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
-fma 0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 0x1p-16445
+fma 0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 0x1p-16445 missing-errno
 = fma downward intel96 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero intel96 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14657,7 +14657,7 @@ fma 0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 0x1p-16445
 = fma tonearest binary128 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
-fma -0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 -0x1p-16445
+fma -0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 -0x1p-16445 missing-errno
 = fma downward intel96 -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest intel96 -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero intel96 -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14670,7 +14670,7 @@ fma -0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 -0x1p-16445
 = fma tonearest binary128 -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16445 0x1p-1 0x0.fffffffffffffffep-16382
+fma 0x1p-16445 0x1p-1 0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14683,7 +14683,7 @@ fma 0x1p-16445 0x1p-1 0x0.fffffffffffffffep-16382
 = fma tonearest binary128 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
 = fma towardzero binary128 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
 = fma upward binary128 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
-fma -0x1p-16445 0x1p-1 -0x0.fffffffffffffffep-16382
+fma -0x1p-16445 0x1p-1 -0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14696,7 +14696,7 @@ fma -0x1p-16445 0x1p-1 -0x0.fffffffffffffffep-16382
 = fma tonearest binary128 -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
 = fma towardzero binary128 -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
 = fma upward binary128 -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
-fma 0x1p-16445 0x1.1p-1 0x0.fffffffffffffffep-16382
+fma 0x1p-16445 0x1.1p-1 0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14709,7 +14709,7 @@ fma 0x1p-16445 0x1.1p-1 0x0.fffffffffffffffep-16382
 = fma tonearest binary128 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
 = fma towardzero binary128 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
 = fma upward binary128 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
-fma -0x1p-16445 0x1.1p-1 -0x0.fffffffffffffffep-16382
+fma -0x1p-16445 0x1.1p-1 -0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest intel96 -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14722,7 +14722,7 @@ fma -0x1p-16445 0x1.1p-1 -0x0.fffffffffffffffep-16382
 = fma tonearest binary128 -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
 = fma towardzero binary128 -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
 = fma upward binary128 -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
-fma 0x1p-16445 0x1p-16445 0x1p16383
+fma 0x1p-16445 0x1p-16445 0x1p16383 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
 = fma tonearest intel96 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero intel96 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
@@ -14735,7 +14735,7 @@ fma 0x1p-16445 0x1p-16445 0x1p16383
 = fma tonearest binary128 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
 = fma upward binary128 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
-fma 0x1p-16445 -0x1p-16445 0x1p16383
+fma 0x1p-16445 -0x1p-16445 0x1p16383 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
@@ -14748,7 +14748,7 @@ fma 0x1p-16445 -0x1p-16445 0x1p16383
 = fma tonearest binary128 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
-fma 0x1p-16445 0x1p-16445 -0x1p16383
+fma 0x1p-16445 0x1p-16445 -0x1p16383 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
 = fma tonearest intel96 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero intel96 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
@@ -14761,7 +14761,7 @@ fma 0x1p-16445 0x1p-16445 -0x1p16383
 = fma tonearest binary128 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
-fma 0x1p-16445 -0x1p-16445 -0x1p16383
+fma 0x1p-16445 -0x1p-16445 -0x1p16383 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
@@ -14774,7 +14774,7 @@ fma 0x1p-16445 -0x1p-16445 -0x1p16383
 = fma tonearest binary128 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
 = fma upward binary128 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
-fma 0x1p-16445 0x1p-16445 0x1p-16382
+fma 0x1p-16445 0x1p-16445 0x1p-16382 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
 = fma tonearest intel96 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
 = fma towardzero intel96 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
@@ -14787,7 +14787,7 @@ fma 0x1p-16445 0x1p-16445 0x1p-16382
 = fma tonearest binary128 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
 = fma towardzero binary128 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
 = fma upward binary128 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4.0000000000000000000000000004p-16384 : inexact
-fma 0x1p-16445 -0x1p-16445 0x1p-16382
+fma 0x1p-16445 -0x1p-16445 0x1p-16382 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14800,7 +14800,7 @@ fma 0x1p-16445 -0x1p-16445 0x1p-16382
 = fma tonearest binary128 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
-fma 0x1p-16445 0x1p-16445 -0x1p-16382
+fma 0x1p-16445 0x1p-16445 -0x1p-16382 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest intel96 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero intel96 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14813,7 +14813,7 @@ fma 0x1p-16445 0x1p-16445 -0x1p-16382
 = fma tonearest binary128 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16445 -0x1p-16445 -0x1p-16382
+fma 0x1p-16445 -0x1p-16445 -0x1p-16382 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4.0000000000000008p-16384 : inexact
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
@@ -14826,7 +14826,7 @@ fma 0x1p-16445 -0x1p-16445 -0x1p-16382
 = fma tonearest binary128 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
 = fma towardzero binary128 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
 = fma upward binary128 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
-fma 0x1p-16445 0x1p-16445 0x0.fffffffffffffffep-16382
+fma 0x1p-16445 0x1p-16445 0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14839,7 +14839,7 @@ fma 0x1p-16445 0x1p-16445 0x0.fffffffffffffffep-16382
 = fma tonearest binary128 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8000000000004p-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16445 -0x1p-16445 0x0.fffffffffffffffep-16382
+fma 0x1p-16445 -0x1p-16445 0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
@@ -14852,7 +14852,7 @@ fma 0x1p-16445 -0x1p-16445 0x0.fffffffffffffffep-16382
 = fma tonearest binary128 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16445 0x1p-16445 -0x0.fffffffffffffffep-16382
+fma 0x1p-16445 0x1p-16445 -0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
@@ -14865,7 +14865,7 @@ fma 0x1p-16445 0x1p-16445 -0x0.fffffffffffffffep-16382
 = fma tonearest binary128 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16445 -0x1p-16445 -0x0.fffffffffffffffep-16382
+fma 0x1p-16445 -0x1p-16445 -0x0.fffffffffffffffep-16382 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
@@ -14878,7 +14878,7 @@ fma 0x1p-16445 -0x1p-16445 -0x0.fffffffffffffffep-16382
 = fma tonearest binary128 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16445 0x1p-16445 0x1p-16445
+fma 0x1p-16445 0x1p-16445 0x1p-16445 missing-errno
 = fma downward intel96 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
@@ -14917,7 +14917,7 @@ fma 0x1p-16445 0x1p-16445 -0x1p-16445 missing-errno
 = fma tonearest binary128 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x7.fffffffffffcp-16448 : inexact underflow errno-erange-ok
 = fma upward binary128 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x7.fffffffffffcp-16448 : inexact underflow errno-erange-ok
-fma 0x1p-16445 -0x1p-16445 -0x1p-16445
+fma 0x1p-16445 -0x1p-16445 -0x1p-16445 missing-errno
 = fma downward intel96 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x1p-16444 : inexact underflow errno-erange-ok
 = fma tonearest intel96 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
 = fma towardzero intel96 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
@@ -14998,7 +14998,7 @@ fma -0x0.ffffffffffffffffp0 -0x0.ffffffffffffffffp0 -0x0.fffffffffffffffep0
 = fma tonearest ibm128 -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
 = fma towardzero ibm128 -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
 = fma upward ibm128 -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16383
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16383 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
@@ -15011,7 +15011,7 @@ fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16383
 = fma tonearest binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16383
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16383 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
@@ -15024,7 +15024,7 @@ fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16383
 = fma tonearest binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16383
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16383 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
@@ -15037,7 +15037,7 @@ fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16383
 = fma tonearest binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16383
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16383 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
@@ -15050,7 +15050,7 @@ fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16383
 = fma tonearest binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16319
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16319 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
@@ -15063,7 +15063,7 @@ fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16319
 = fma tonearest binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8.0000000000000000000000000008p+16316 : inexact
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16319
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16319 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
@@ -15076,7 +15076,7 @@ fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16319
 = fma tonearest binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
-fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16319
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16319 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
@@ -15089,7 +15089,7 @@ fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16319
 = fma tonearest binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
-fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16319
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16319 missing-errno
 = fma downward intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8.000000000000001p+16316 : inexact
 = fma tonearest intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma towardzero intel96 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
@@ -15102,67 +15102,67 @@ fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16319
 = fma tonearest binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma upward binary128 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
-fma 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0x1.6b500daf0580d987f1bc0cadfcddp-13777 0x1.613cd91d9fed34b33820e5ab9d8dp-16378
+fma 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0x1.6b500daf0580d987f1bc0cadfcddp-13777 0x1.613cd91d9fed34b33820e5ab9d8dp-16378 missing-errno
 = fma downward binary128 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9fp-16360 : inexact
 = fma tonearest binary128 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9fp-16360 : inexact
 = fma towardzero binary128 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9ep-16360 : inexact
 = fma upward binary128 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9ep-16360 : inexact
-fma -0x1.f949b880cacb0f0c61540105321dp-5954 -0x1.3876cec84b4140f3bd6198731b7ep-10525 -0x0.a5dc1c6cfbc498c54fb0b504bf19p-16382
+fma -0x1.f949b880cacb0f0c61540105321dp-5954 -0x1.3876cec84b4140f3bd6198731b7ep-10525 -0x0.a5dc1c6cfbc498c54fb0b504bf19p-16382 missing-errno
 = fma downward binary128 -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2aecp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2aecp-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2ae8p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2ae8p-16384 : inexact underflow errno-erange-ok
-fma -0x1.0000fffffffffp-16221 0x1.0000001fffff8007fep-239 0x0.ff87ffffffffffffe000003fffffp-16382
+fma -0x1.0000fffffffffp-16221 0x1.0000001fffff8007fep-239 0x0.ff87ffffffffffffe000003fffffp-16382 missing-errno
 = fma downward binary128 -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdf8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdfcp-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdf8p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdfcp-16384 : inexact underflow errno-erange-ok
-fma -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x1.5ba830022b6139e21fbe7270cad8p-6314 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616
+fma -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x1.5ba830022b6139e21fbe7270cad8p-6314 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 missing-errno
 = fma downward binary128 -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d68p-8544 : inexact
 = fma tonearest binary128 -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d68p-8544 : inexact
 = fma towardzero binary128 -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d68p-8544 : inexact
 = fma upward binary128 -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d7p-8544 : inexact
-fma -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0x1.f34235ff9d095449c29b4831b62dp+3311 0x1.fbe4302df23354dbd0c4d3cfe606p+5879
+fma -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0x1.f34235ff9d095449c29b4831b62dp+3311 0x1.fbe4302df23354dbd0c4d3cfe606p+5879 missing-errno
 = fma downward binary128 -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57ebp+5964 : inexact
 = fma tonearest binary128 -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57eafp+5964 : inexact
 = fma towardzero binary128 -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57eafp+5964 : inexact
 = fma upward binary128 -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57eafp+5964 : inexact
-fma -0x1.ca8835fc6ecfb5398625fc891be5p-1686 0x1.621e1972bbe2180e5be9dd7d8df5p-7671 -0x1.7d2d21b73b52cf20dec2a83902a4p-9395
+fma -0x1.ca8835fc6ecfb5398625fc891be5p-1686 0x1.621e1972bbe2180e5be9dd7d8df5p-7671 -0x1.7d2d21b73b52cf20dec2a83902a4p-9395 missing-errno
 = fma downward binary128 -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042dp-9356 : inexact
 = fma tonearest binary128 -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042cp-9356 : inexact
 = fma towardzero binary128 -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042cp-9356 : inexact
 = fma upward binary128 -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042cp-9356 : inexact
-fma -0x1.55cff679ec49c2541fab41fc843ep-11819 0x1.e60e9f464f9e8df0509647c7c971p+12325 0x1.eaa2a7649d765c2f564f7a5beca7p+454
+fma -0x1.55cff679ec49c2541fab41fc843ep-11819 0x1.e60e9f464f9e8df0509647c7c971p+12325 0x1.eaa2a7649d765c2f564f7a5beca7p+454 missing-errno
 = fma downward binary128 -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c38p+504 : inexact
 = fma tonearest binary128 -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c3p+504 : inexact
 = fma towardzero binary128 -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c3p+504 : inexact
 = fma upward binary128 -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c3p+504 : inexact
-fma 0x1.f0e7b1454908576f2537d863cf9bp+11432 0x1.cdce52f09d4ca76e68706f34b5d5p-1417 -0x1.2e986187c70f146235ea2066e486p+9979
+fma 0x1.f0e7b1454908576f2537d863cf9bp+11432 0x1.cdce52f09d4ca76e68706f34b5d5p-1417 -0x1.2e986187c70f146235ea2066e486p+9979 missing-errno
 = fma downward binary128 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f661p+10016 : inexact
 = fma tonearest binary128 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f661p+10016 : inexact
 = fma towardzero binary128 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f661p+10016 : inexact
 = fma upward binary128 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f662p+10016 : inexact
-fma 0x1.f102f7da4a57a3a4aab620e29452p-3098 -0x1.cc06a4ff40248f9e2dcc4b6afd84p-11727 0x1.d512a11126b5ac8ed8973b8580c8p-14849
+fma 0x1.f102f7da4a57a3a4aab620e29452p-3098 -0x1.cc06a4ff40248f9e2dcc4b6afd84p-11727 0x1.d512a11126b5ac8ed8973b8580c8p-14849 missing-errno
 = fma downward binary128 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23bp-14824 : inexact
 = fma tonearest binary128 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23bp-14824 : inexact
 = fma towardzero binary128 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23ap-14824 : inexact
 = fma upward binary128 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23ap-14824 : inexact
-fma -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0x1.fbc9750da8468852d84558e1db6dp-5773 -0x1.00a98abf783f75c40fe5b7a37d86p-9607
+fma -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0x1.fbc9750da8468852d84558e1db6dp-5773 -0x1.00a98abf783f75c40fe5b7a37d86p-9607 missing-errno
 = fma downward binary128 -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2adp-9588 : inexact
 = fma tonearest binary128 -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2adp-9588 : inexact
 = fma towardzero binary128 -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2acp-9588 : inexact
 = fma upward binary128 -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2acp-9588 : inexact
-fma 0x1.00000000000007ffffffffffffffp-9045 -0x1.ffffffffffff80000001ffffffffp+4773 -0x1.f8p-4316
+fma 0x1.00000000000007ffffffffffffffp-9045 -0x1.ffffffffffff80000001ffffffffp+4773 -0x1.f8p-4316 missing-errno
 = fma downward binary128 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfep-4272 : inexact
 = fma tonearest binary128 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfep-4272 : inexact
 = fma towardzero binary128 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfcp-4272 : inexact
 = fma upward binary128 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfcp-4272 : inexact
-fma 0x1.4e922764c90701d4a2f21d01893dp-8683 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0x1.e9634462eaef96528b90b6944578p-8521
+fma 0x1.4e922764c90701d4a2f21d01893dp-8683 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0x1.e9634462eaef96528b90b6944578p-8521 missing-errno
 = fma downward binary128 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d663842194p-8472 : inexact
 = fma tonearest binary128 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d663842194p-8472 : inexact
 = fma towardzero binary128 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d66384219p-8472 : inexact
 = fma upward binary128 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d66384219p-8472 : inexact
-fma 0x1.801181509c03bdbef10d6165588cp-15131 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x1.6e9df0dab1c9f1d7a6043c390741p-15507
+fma 0x1.801181509c03bdbef10d6165588cp-15131 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x1.6e9df0dab1c9f1d7a6043c390741p-15507 missing-errno
 = fma downward binary128 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48210cp-15500 : inexact
 = fma tonearest binary128 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48211p-15500 : inexact
 = fma towardzero binary128 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48210cp-15500 : inexact
@@ -15184,107 +15184,107 @@ fma 0x1.ffffffffffffffp0 0x1.000000000000008p0 -0x1p-1000
 = fma tonearest ibm128 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
 = fma towardzero ibm128 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.ffffffffffffffffffffffffff8p+0 : inexact
 = fma upward ibm128 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
-fma 0x1.4p-16382 0x1.0000000000000000000000000002p-1 0x1p-16384
+fma 0x1.4p-16382 0x1.0000000000000000000000000002p-1 0x1p-16384 missing-errno
 = fma downward binary128 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000008p-16384 : inexact underflow errno-erange-ok
-fma -0x1.4p-16382 0x1.0000000000000000000000000002p-1 -0x1p-16384
+fma -0x1.4p-16382 0x1.0000000000000000000000000002p-1 -0x1p-16384 missing-errno
 = fma downward binary128 -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000008p-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
-fma 0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 0x1p-16494
+fma 0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 0x1p-16494 missing-errno
 = fma downward binary128 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
-fma -0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 -0x1p-16494
+fma -0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 -0x1p-16494 missing-errno
 = fma downward binary128 -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest binary128 -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 0x1p-1 0x0.ffffffffffffffffffffffffffffp-16382
+fma 0x1p-16494 0x1p-1 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
-fma -0x1p-16494 0x1p-1 -0x0.ffffffffffffffffffffffffffffp-16382
+fma -0x1p-16494 0x1p-1 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 0x1.1p-1 0x0.ffffffffffffffffffffffffffffp-16382
+fma 0x1p-16494 0x1.1p-1 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
-fma -0x1p-16494 0x1.1p-1 -0x0.ffffffffffffffffffffffffffffp-16382
+fma -0x1p-16494 0x1.1p-1 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest binary128 -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 0x1p-16494 0x1p16383
+fma 0x1p-16494 0x1p-16494 0x1p16383 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
 = fma tonearest binary128 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
 = fma upward binary128 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
-fma 0x1p-16494 -0x1p-16494 0x1p16383
+fma 0x1p-16494 -0x1p-16494 0x1p16383 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
-fma 0x1p-16494 0x1p-16494 -0x1p16383
+fma 0x1p-16494 0x1p-16494 -0x1p16383 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
 = fma tonearest binary128 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
-fma 0x1p-16494 -0x1p-16494 -0x1p16383
+fma 0x1p-16494 -0x1p-16494 -0x1p16383 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8.0000000000000000000000000008p+16380 : inexact
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
 = fma upward binary128 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
-fma 0x1p-16494 0x1p-16494 0x1p-16382
+fma 0x1p-16494 0x1p-16494 0x1p-16382 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
 = fma tonearest binary128 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
 = fma towardzero binary128 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
 = fma upward binary128 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4.0000000000000000000000000004p-16384 : inexact
-fma 0x1p-16494 -0x1p-16494 0x1p-16382
+fma 0x1p-16494 -0x1p-16494 0x1p-16382 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
-fma 0x1p-16494 0x1p-16494 -0x1p-16382
+fma 0x1p-16494 0x1p-16494 -0x1p-16382 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma tonearest binary128 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
 = fma towardzero binary128 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 -0x1p-16494 -0x1p-16382
+fma 0x1p-16494 -0x1p-16494 -0x1p-16382 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4.0000000000000000000000000004p-16384 : inexact
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
 = fma upward binary128 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
-fma 0x1p-16494 0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382
+fma 0x1p-16494 0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 -0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382
+fma 0x1p-16494 -0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382
+fma 0x1p-16494 0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 -0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382
+fma 0x1p-16494 -0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
-fma 0x1p-16494 0x1p-16494 0x1p-16494
+fma 0x1p-16494 0x1p-16494 0x1p-16494 missing-errno
 = fma downward binary128 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
@@ -15299,67 +15299,67 @@ fma 0x1p-16494 0x1p-16494 -0x1p-16494 missing-errno
 = fma tonearest binary128 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
 = fma upward binary128 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
-fma 0x1p-16494 -0x1p-16494 -0x1p-16494
+fma 0x1p-16494 -0x1p-16494 -0x1p-16494 missing-errno
 = fma downward binary128 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x8p-16496 : inexact underflow errno-erange-ok
 = fma tonearest binary128 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
 = fma towardzero binary128 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
 = fma upward binary128 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
-fma 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0
+fma 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0 missing-errno
 = fma downward binary128 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
 = fma tonearest binary128 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
 = fma towardzero binary128 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
 = fma upward binary128 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
-fma 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0
+fma 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0 missing-errno
 = fma downward binary128 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
 = fma tonearest binary128 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
 = fma towardzero binary128 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
 = fma upward binary128 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
-fma -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0
+fma -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0 missing-errno
 = fma downward binary128 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
 = fma tonearest binary128 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
 = fma towardzero binary128 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
 = fma upward binary128 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
-fma -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0
+fma -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0 missing-errno
 = fma downward binary128 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
 = fma tonearest binary128 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
 = fma towardzero binary128 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
 = fma upward binary128 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16383
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16383 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16383
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16383 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16383
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16383 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16383
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16383 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8.0000000000000000000000000008p+16380 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16319
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16319 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8.0000000000000000000000000008p+16316 : inexact
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16319
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16319 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
-fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16319
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16319 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
 = fma upward binary128 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
-fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16319
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16319 missing-errno
 = fma downward binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8.0000000000000000000000000008p+16316 : inexact
 = fma tonearest binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
 = fma towardzero binary128 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
@@ -15485,7 +15485,7 @@ fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-
 = fma tonearest ibm128 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
 = fma towardzero ibm128 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
 = fma upward ibm128 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff80000000000004p+1020 : inexact
-fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 0x1.fffffffffffffp1023
+fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-errno
 = fma downward binary64 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffp+1020 : inexact
 = fma tonearest binary64 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
 = fma towardzero binary64 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffp+1020 : inexact
@@ -15506,7 +15506,7 @@ fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 0x1.fffffffffffffp1023
 = fma tonearest ibm128 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
 = fma towardzero ibm128 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffffffffffffcp+1020 : inexact
 = fma upward ibm128 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
-fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 -0x1.fffffffffffffp1023
+fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 -0x1.fffffffffffffp1023 missing-errno
 = fma downward binary64 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
 = fma tonearest binary64 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
 = fma towardzero binary64 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffffp+1020 : inexact
@@ -15561,7 +15561,7 @@ fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 0x1.fffffffffffffffep163
 = fma tonearest binary128 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
 = fma towardzero binary128 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
 = fma upward binary128 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffff0000000000008p+16380 : inexact
-fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383
+fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383 missing-errno
 = fma downward intel96 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffep+16380 : inexact
 = fma tonearest intel96 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
 = fma towardzero intel96 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffep+16380 : inexact
@@ -15574,7 +15574,7 @@ fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 0x1.fffffffffffffffep16
 = fma tonearest binary128 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
 = fma towardzero binary128 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffeffffffffffff8p+16380 : inexact
 = fma upward binary128 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
-fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383
+fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383 missing-errno
 = fma downward intel96 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
 = fma tonearest intel96 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
 = fma towardzero intel96 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffep+16380 : inexact
@@ -15605,12 +15605,12 @@ fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114
 = fma tonearest binary128 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
 = fma towardzero binary128 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
 = fma upward binary128 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
-fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383
+fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383 missing-errno
 = fma downward binary128 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffffp+16380 : inexact
 = fma tonearest binary128 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
 = fma towardzero binary128 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffffp+16380 : inexact
 = fma upward binary128 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
-fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383
+fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383 missing-errno
 = fma downward binary128 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
 = fma tonearest binary128 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
 = fma towardzero binary128 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffffp+16380 : inexact
diff --git a/math/auto-libm-test-out-narrow-fma b/math/auto-libm-test-out-narrow-fma
new file mode 100644 (file)
index 0000000..3e20ce9
--- /dev/null
@@ -0,0 +1,35254 @@
+fma 1.0 2.0 3.0
+= fma downward binary32:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma tonearest binary32:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma towardzero binary32:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma upward binary32:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma downward binary64:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma tonearest binary64:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma towardzero binary64:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma upward binary64:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma downward intel96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma tonearest intel96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma towardzero intel96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma upward intel96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma downward m68k96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma tonearest m68k96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma towardzero m68k96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma upward m68k96:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma downward binary128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma tonearest binary128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma towardzero binary128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma upward binary128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma downward ibm128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma tonearest ibm128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma towardzero ibm128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+= fma upward ibm128:arg_fmt(1,2,0,2) 0x1p+0 0x2p+0 0x3p+0 : 0x5p+0 :
+fma 1.25 0.75 0.0625
+= fma downward binary32:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma tonearest binary32:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma towardzero binary32:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma upward binary32:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma downward binary64:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma tonearest binary64:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma towardzero binary64:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma upward binary64:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma downward intel96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma tonearest intel96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma towardzero intel96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma upward intel96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma downward m68k96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma upward m68k96:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma downward binary128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma tonearest binary128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma towardzero binary128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma upward binary128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma downward ibm128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+= fma upward ibm128:arg_fmt(0,1,-4,3) 0x1.4p+0 0xcp-4 0x1p-4 : 0x1p+0 :
+fma 0 0 0
+= fma downward binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+fma 0 0 -0
+= fma downward binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) 0x0p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+fma 0 -0 0
+= fma downward binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+fma 0 -0 -0
+= fma downward binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) 0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+fma -0 0 0
+= fma downward binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+fma -0 0 -0
+= fma downward binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) -0x0p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+fma -0 -0 0
+= fma downward binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+fma -0 -0 -0
+= fma downward binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,0,0,0) -0x0p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+fma 1.0 0 0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+fma 1.0 0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 -0x0p+0 : 0x0p+0 :
+fma 1.0 -0 0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+fma 1.0 -0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+fma -1.0 0 0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 0x0p+0 : 0x0p+0 :
+fma -1.0 0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x0p+0 -0x0p+0 : -0x0p+0 :
+fma -1.0 -0 0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 0x0p+0 : 0x0p+0 :
+fma -1.0 -0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x0p+0 -0x0p+0 : 0x0p+0 :
+fma 0 1.0 0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+fma 0 1.0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 -0x0p+0 : 0x0p+0 :
+fma 0 -1.0 0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+fma 0 -1.0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+fma -0 1.0 0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 0x0p+0 : 0x0p+0 :
+fma -0 1.0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x0p+0 0x1p+0 -0x0p+0 : -0x0p+0 :
+fma -0 -1.0 0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 0x0p+0 : 0x0p+0 :
+fma -0 -1.0 -0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x0p+0 -0x1p+0 -0x0p+0 : 0x0p+0 :
+fma 1.0 1.0 -1.0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x1p+0 -0x1p+0 : 0x0p+0 :
+fma 1.0 -1.0 1.0
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 -0x1p+0 0x1p+0 : 0x0p+0 :
+fma -1.0 1.0 1.0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x1p+0 0x1p+0 0x1p+0 : 0x0p+0 :
+fma -1.0 -1.0 -1.0
+= fma downward binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : -0x0p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) -0x1p+0 -0x1p+0 -0x1p+0 : 0x0p+0 :
+fma 0 0 1
+= fma downward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+fma 0 0 2
+= fma downward binary32:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary32:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary32:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary32:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward binary64:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary64:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary64:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary64:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward intel96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest intel96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero intel96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward intel96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward m68k96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest m68k96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero m68k96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward m68k96:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward binary128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward ibm128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest ibm128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero ibm128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward ibm128:arg_fmt(1,1,1,1) 0x0p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+fma 0 0 max xfail-rounding:ibm128-libgcc missing-errno
+= fma downward binary32:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary32:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary32:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary32:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary64:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary64:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary64:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary64:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward intel96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero intel96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero m68k96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero ibm128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(127,24,104,24) 0x0p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary32:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest binary64:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary64:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward binary64:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward intel96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero intel96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero m68k96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(1023,53,971,53) 0x0p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward binary32:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero intel96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero m68k96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero binary128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,16320,64) 0x0p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 :
+= fma towardzero binary128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,16271,113) 0x0p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest binary64:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(1023,53,918,106) 0x0p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+fma 0 1 1
+= fma downward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x0p+0 0x1p+0 0x1p+0 : 0x1p+0 :
+fma 1 0 1
+= fma downward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary32:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary64:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward intel96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward m68k96:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward binary128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma downward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma tonearest ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma towardzero ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+= fma upward ibm128:arg_fmt(0,1,0,1) 0x1p+0 0x0p+0 0x1p+0 : 0x1p+0 :
+fma 0 1 2
+= fma downward binary32:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary32:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary32:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary32:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma downward binary64:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary64:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary64:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary64:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma downward intel96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest intel96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero intel96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma upward intel96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma downward m68k96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest m68k96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero m68k96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma upward m68k96:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma downward binary128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma downward ibm128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest ibm128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero ibm128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+= fma upward ibm128:arg_fmt(1,1,0,1) 0x0p+0 0x1p+0 0x2p+0 : 0x2p+0 :
+fma 1 0 2
+= fma downward binary32:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary32:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary32:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary32:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward binary64:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary64:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary64:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary64:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward intel96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest intel96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero intel96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward intel96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward m68k96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest m68k96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero m68k96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward m68k96:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward binary128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest binary128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero binary128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward binary128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma downward ibm128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma tonearest ibm128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma towardzero ibm128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+= fma upward ibm128:arg_fmt(1,1,0,1) 0x1p+0 0x0p+0 0x2p+0 : 0x2p+0 :
+fma 0 1 max xfail-rounding:ibm128-libgcc missing-errno
+= fma downward binary32:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary32:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary32:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary32:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary64:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary64:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary64:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary64:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward intel96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero intel96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero m68k96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero ibm128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(127,24,0,24) 0x0p+0 0x1p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary32:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest binary64:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary64:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward binary64:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward intel96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero intel96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero m68k96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(1023,53,0,53) 0x0p+0 0x1p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward binary32:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero intel96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero m68k96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero binary128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,0,64) 0x0p+0 0x1p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 :
+= fma towardzero binary128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,0,113) 0x0p+0 0x1p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest binary64:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(1023,53,0,106) 0x0p+0 0x1p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+fma 1 0 max xfail-rounding:ibm128-libgcc missing-errno
+= fma downward binary32:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary32:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary32:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary32:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary64:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary64:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary64:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary64:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward intel96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero intel96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero m68k96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero ibm128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(127,24,0,24) 0x1p+0 0x0p+0 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc
+= fma downward binary32:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest binary64:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary64:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward binary64:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward intel96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero intel96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero m68k96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(1023,53,0,53) 0x1p+0 0x0p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc
+= fma downward binary32:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest intel96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero intel96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward intel96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward m68k96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest m68k96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero m68k96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward m68k96:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward binary128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 :
+= fma towardzero binary128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,0,64) 0x1p+0 0x0p+0 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 :
+= fma towardzero binary128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,0,113) 0x1p+0 0x0p+0 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest binary64:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffp+1020 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffcp+1020 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma tonearest binary128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma upward binary128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma downward ibm128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma tonearest ibm128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+= fma upward ibm128:arg_fmt(1023,53,0,106) 0x1p+0 0x0p+0 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc
+fma min min 0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma min min -0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma min -min 0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma min -min -0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) 0x4p-128 -0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-128 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-128 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x4p-128 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x4p-128 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) 0x4p-1024 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) 0x4p-1024 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-1024 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x4p-1024 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x4p-1024 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) 0x4p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) 0x4p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) 0x4p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x4p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x4p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) 0x2p-16384 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) 0x2p-16384 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) 0x2p-16384 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) 0x2p-16384 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x2p-16384 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) 0x8p-972 -0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) 0x8p-972 -0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) 0x8p-972 -0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) 0x8p-972 -0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) 0x8p-972 -0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -min min 0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 0x0p+0 : -0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -min min -0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 0x4p-128 -0x0p+0 : -0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 0x4p-128 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 0x4p-1024 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 0x4p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 0x2p-16384 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 0x8p-972 -0x0p+0 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -min -min 0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 0x0p+0 : 0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -min -min -0 missing-errno
+= fma downward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward binary64:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward intel96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward m68k96:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward binary128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma tonearest ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma towardzero ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma upward ibm128:arg_fmt(-126,1,-126,1) -0x4p-128 -0x4p-128 -0x0p+0 : 0x1p-252 :
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-128 -0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-128 -0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x4p-128 -0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x4p-128 -0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma tonearest intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma towardzero intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma upward intel96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma downward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma tonearest m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma towardzero m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma upward m68k96:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma downward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma tonearest binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma towardzero binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma upward binary128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x1p-1148 :
+= fma downward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-1022,1) -0x4p-1024 -0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma tonearest intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma towardzero intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma upward intel96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma downward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma tonearest m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma towardzero m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma upward m68k96:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma downward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma tonearest binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma towardzero binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma upward binary128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x1p-2044 :
+= fma downward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1022,1) -0x4p-1024 -0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-1024 -0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x4p-1024 -0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x4p-1024 -0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16382,1) -0x4p-16384 -0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16382,1) -0x4p-16384 -0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16382,1) -0x4p-16384 -0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x4p-16384 -0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x4p-16384 -0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-16383,1) -0x2p-16384 -0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-16383,1) -0x2p-16384 -0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16383,1) -0x2p-16384 -0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,1,-16383,1) -0x2p-16384 -0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x2p-16384 -0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma tonearest intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma towardzero intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma upward intel96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma downward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma tonearest m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma towardzero m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma upward m68k96:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma downward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma tonearest binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma towardzero binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma upward binary128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x2p-1096 :
+= fma downward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-126,1,-969,1) -0x8p-972 -0x4p-128 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma tonearest intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma towardzero intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma upward intel96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma downward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma tonearest m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma towardzero m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma upward m68k96:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma downward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma tonearest binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma towardzero binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma upward binary128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x2p-1992 :
+= fma downward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-1022,1) -0x8p-972 -0x4p-1024 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16382,1) -0x8p-972 -0x4p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-16383,1) -0x8p-972 -0x2p-16384 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma downward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma tonearest intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma towardzero intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma upward intel96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma downward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma tonearest m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma towardzero m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma upward m68k96:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma downward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma tonearest binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma towardzero binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma upward binary128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1940 :
+= fma downward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-969,1,-969,1) -0x8p-972 -0x8p-972 -0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma max max min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma max max -min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma max -max min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma max -max -min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) 0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) 0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma -max max min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-128 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-1024 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 0x4p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 0x2p-16384 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000f8p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffp+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 0x8p-972 : -0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma -max max -min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-128 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe00000108p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe0000010001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe00000100000000000000008p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001000000000000004p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 0xf.fffffp+124 -0x8p-972 : -0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff801p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff001p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc01p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffcp+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffp+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffp+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma -max -max min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-128 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe00000108p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe0000010001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe00000100000000000000008p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 0x8p-972 : 0xf.ffffe000001000000000000004p+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffff8000008000000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff0000000000000408p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma -max -max -min missing-errno
+= fma downward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-126,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-1022,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16382,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-16383,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000f8p+252 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000f8p+252 : inexact
+= fma upward binary64:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward intel96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffp+252 : inexact
+= fma upward m68k96:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffff8p+252 : inexact
+= fma upward binary128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000000ffffffffffffffcp+252 : inexact
+= fma upward ibm128:arg_fmt(127,24,-969,24) -0xf.fffffp+124 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffe000001p+252 : inexact
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffp+124 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffp+124 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.fffffp+124 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8p+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff801p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000007ffffffff8p+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffff8000008p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff001p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000003f8p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff00000000000004p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,53) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffff8p+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffff8p+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,64) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffp+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.fffffffffffffffp+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.fffffffffffffffffffffffffff8p+16380 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffcp+1148 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc01p+1148 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffcp+1148 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffefffffffc000003ffffffc08p+1148 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffp+124 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff4p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffep+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffff3ffffffffffffe08p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffff8p+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffp+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-126,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-1022,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16382,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16383,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward intel96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffp+16380 : inexact overflow errno-erange-ok
+= fma upward m68k96:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact overflow errno-erange-ok
+= fma upward binary128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-969,113) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.fffffffffffffffffffffffffff8p+16380 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-126,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-128 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-1022,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-1024 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16382,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x4p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-16383,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x2p-16384 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward intel96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffp+2044 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff8p+2044 : inexact
+= fma downward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff9p+2044 : inexact
+= fma upward binary128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffff7ffffffffffff908p+2044 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(1023,53,-969,106) -0xf.ffffffffffffbffffffffffffcp+1020 -0xf.ffffffffffffbffffffffffffcp+1020 -0x8p-972 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.7ff8p+13 0x1.000002p+0 0x1.ffffp-24
+= fma downward binary32:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff004p+12 : inexact
+= fma tonearest binary32:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff004p+12 : inexact
+= fma towardzero binary32:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff004p+12 : inexact
+= fma upward binary32:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff008p+12 : inexact
+= fma downward binary64:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005ffffffep+12 : inexact
+= fma tonearest binary64:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff006p+12 : inexact
+= fma towardzero binary64:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005ffffffep+12 : inexact
+= fma upward binary64:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff006p+12 : inexact
+= fma downward intel96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma tonearest intel96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma towardzero intel96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma upward intel96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma downward m68k96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma tonearest m68k96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma towardzero m68k96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma upward m68k96:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma downward binary128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma tonearest binary128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma towardzero binary128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma upward binary128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma downward ibm128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma tonearest ibm128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma towardzero ibm128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+= fma upward ibm128:arg_fmt(13,1,-40,24) 0x2.fffp+12 0x1.000002p+0 0x1.ffffp-24 : 0x2.fff005fffffffp+12 :
+fma 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0
+= fma downward binary32:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma tonearest binary32:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma towardzero binary32:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma upward binary32:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma downward binary64:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma tonearest binary64:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma towardzero binary64:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma upward binary64:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma downward intel96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma tonearest intel96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma towardzero intel96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma upward intel96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma downward m68k96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma tonearest m68k96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma towardzero m68k96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma upward m68k96:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma downward binary128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma tonearest binary128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma towardzero binary128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma upward binary128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma downward ibm128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma tonearest ibm128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma towardzero ibm128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+= fma upward ibm128:arg_fmt(0,13,-20,21) 0x1.fffp+0 0x1.00001p+0 -0x1.fffp+0 : 0x1.fffp-20 :
+fma 0x1.9abcdep+127 0x0.9abcdep-126 -0x1.f08948p+0
+= fma downward binary32:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma tonearest binary32:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma towardzero binary32:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma upward binary32:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma downward binary64:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma tonearest binary64:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma towardzero binary64:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma upward binary64:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma downward intel96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma tonearest intel96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma towardzero intel96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma upward intel96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma downward m68k96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma tonearest m68k96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma towardzero m68k96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma upward m68k96:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma downward binary128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma tonearest binary128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma towardzero binary128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma upward binary128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma downward ibm128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma tonearest ibm128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma towardzero ibm128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+= fma upward ibm128:arg_fmt(127,2,-149,24) 0xc.d5e6fp+124 0x2.6af378p-128 -0x1.f08948p+0 : 0xd.da108p-28 :
+fma 0x1.9abcdep+100 0x0.9abcdep-126 -0x1.f08948p-27
+= fma downward binary32:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma tonearest binary32:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma towardzero binary32:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma upward binary32:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma downward binary64:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma tonearest binary64:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma towardzero binary64:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma upward binary64:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma downward intel96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma tonearest intel96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma towardzero intel96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma upward intel96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma downward m68k96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma tonearest m68k96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma towardzero m68k96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma upward m68k96:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma downward binary128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma tonearest binary128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma towardzero binary128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma upward binary128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma downward ibm128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma tonearest ibm128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma towardzero ibm128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+= fma upward ibm128:arg_fmt(100,2,-149,24) 0x1.9abcdep+100 0x2.6af378p-128 -0x3.e1129p-28 : 0x1.bb421p-52 :
+fma 0x1.fffffep+127 0x1.001p+0 -0x1.fffffep+127
+= fma downward binary32:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma tonearest binary32:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma towardzero binary32:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma upward binary32:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma downward binary64:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma tonearest binary64:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma towardzero binary64:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma upward binary64:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma downward intel96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma tonearest intel96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma towardzero intel96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma upward intel96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma downward m68k96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma tonearest m68k96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma towardzero m68k96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma upward m68k96:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma downward binary128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma tonearest binary128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma towardzero binary128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma upward binary128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma downward ibm128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma tonearest ibm128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma towardzero ibm128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+= fma upward ibm128:arg_fmt(127,24,-12,24) 0xf.fffffp+124 0x1.001p+0 -0xf.fffffp+124 : 0xf.fffffp+112 :
+fma -0x1.fffffep+127 0x1.fffffep+0 0x1.fffffep+127
+= fma downward binary32:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffep+124 : inexact
+= fma tonearest binary32:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffdp+124 : inexact
+= fma towardzero binary32:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffdp+124 : inexact
+= fma upward binary32:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffdp+124 : inexact
+= fma downward binary64:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma tonearest binary64:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma towardzero binary64:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma upward binary64:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma downward intel96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma tonearest intel96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma towardzero intel96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma upward intel96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma downward m68k96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma tonearest m68k96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma towardzero m68k96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma upward m68k96:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma downward binary128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma tonearest binary128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma towardzero binary128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma upward binary128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma downward ibm128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma tonearest ibm128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma towardzero ibm128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+= fma upward ibm128:arg_fmt(127,24,-23,24) -0xf.fffffp+124 0x1.fffffep+0 0xf.fffffp+124 : -0xf.ffffd000002p+124 :
+fma 0x1.fffffep+127 2.0 -0x1.fffffep+127
+= fma downward binary32:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma tonearest binary32:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary32:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma upward binary32:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma downward binary64:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma tonearest binary64:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary64:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma upward binary64:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma downward intel96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma tonearest intel96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero intel96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma upward intel96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma downward m68k96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma tonearest m68k96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero m68k96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma upward m68k96:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma downward binary128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma tonearest binary128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero binary128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma upward binary128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma downward ibm128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma tonearest ibm128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma towardzero ibm128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+= fma upward ibm128:arg_fmt(127,24,1,24) 0xf.fffffp+124 0x2p+0 -0xf.fffffp+124 : 0xf.fffffp+124 :
+fma 0x1.4p-126 0x1.000004p-1 0x1p-128
+= fma downward binary32:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.800008p-128 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.800008p-128 : inexact underflow errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.800008p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80001p-128 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma upward binary64:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma downward intel96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma upward intel96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma downward m68k96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma upward m68k96:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma downward binary128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma upward binary128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma downward ibm128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+= fma upward ibm128:arg_fmt(-1,1,-128,23) 0x5p-128 0x8.00002p-4 0x1p-128 : 0x3.80000ap-128 :
+fma -0x1.4p-126 0x1.000004p-1 -0x1p-128
+= fma downward binary32:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80001p-128 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.800008p-128 : inexact underflow errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.800008p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.800008p-128 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma upward binary64:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma downward intel96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma upward intel96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma downward m68k96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma upward m68k96:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma downward binary128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma upward binary128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma downward ibm128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+= fma upward ibm128:arg_fmt(-1,1,-128,23) -0x5p-128 0x8.00002p-4 -0x1p-128 : -0x3.80000ap-128 :
+fma 0x1.fffff8p-126 0x1.000002p-1 0x1p-149
+= fma downward binary32:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x4p-128 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary32:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x4p-128 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward binary64:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma upward binary64:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma downward intel96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma upward intel96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma downward m68k96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma upward m68k96:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma downward binary128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma upward binary128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma downward ibm128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+= fma upward ibm128:arg_fmt(-1,1,-149,24) 0x7.ffffep-128 0x8.00001p-4 0x8p-152 : 0x3.ffffffffffep-128 :
+fma -0x1.fffff8p-126 0x1.000002p-1 -0x1p-149
+= fma downward binary32:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x4p-128 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary32:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x4p-128 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary32:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma upward binary64:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma downward intel96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma upward intel96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma downward m68k96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma upward m68k96:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma downward binary128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma upward binary128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma downward ibm128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+= fma upward ibm128:arg_fmt(-1,1,-149,24) -0x7.ffffep-128 0x8.00001p-4 -0x8p-152 : -0x3.ffffffffffep-128 :
+fma 0x1p-149 0x1p-1 0x0.fffffep-126
+= fma downward binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x4p-128 : inexact underflow errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x4p-128 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma upward binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma downward intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma upward intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma downward m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma upward m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma downward binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma upward binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma downward ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+= fma upward ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8p-4 0x3.fffff8p-128 : 0x3.fffffcp-128 :
+fma -0x1p-149 0x1p-1 -0x0.fffffep-126
+= fma downward binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x4p-128 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x4p-128 : inexact underflow errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma upward binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma downward intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma upward intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma downward m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma upward m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma downward binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma upward binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma downward ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+= fma upward ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8p-4 -0x3.fffff8p-128 : -0x3.fffffcp-128 :
+fma 0x1p-149 0x1.1p-1 0x0.fffffep-126
+= fma downward binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x4p-128 : inexact underflow errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x4p-128 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma upward binary64:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma downward intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma upward intel96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma downward m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma upward m68k96:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma downward binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma upward binary128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma downward ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+= fma upward ibm128:arg_fmt(-1,1,-149,23) 0x8p-152 0x8.8p-4 0x3.fffff8p-128 : 0x3.fffffc4p-128 :
+fma -0x1p-149 0x1.1p-1 -0x0.fffffep-126
+= fma downward binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x4p-128 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x4p-128 : inexact underflow errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma tonearest binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma towardzero binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma upward binary64:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma downward intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma tonearest intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma towardzero intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma upward intel96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma downward m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma tonearest m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma towardzero m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma upward m68k96:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma downward binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma tonearest binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma towardzero binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma upward binary128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma downward ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma tonearest ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma towardzero ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+= fma upward ibm128:arg_fmt(-1,1,-149,23) -0x8p-152 0x8.8p-4 -0x3.fffff8p-128 : -0x3.fffffc4p-128 :
+fma 0x1p-149 0x1p-149 0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8.00001p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8.0000000000008p+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8.000000000000001p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8.000000000000001p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8.0000000000000000000000000008p+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 0x8p+124 : 0x8.00000000000000000000000004p+124 : inexact
+fma 0x1p-149 -0x1p-149 0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffff8p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffff8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.ffffffffffffcp+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.ffffffffffffcp+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffffffffffffffep+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x7.fffffffffffffffffffffffffep+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 0x8p+124 : 0x8p+124 : inexact
+fma 0x1p-149 0x1p-149 -0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffff8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffff8p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.ffffffffffffcp+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.ffffffffffffcp+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffffffffffffffep+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 0x8p-152 -0x8p+124 : -0x7.fffffffffffffffffffffffffep+124 : inexact
+fma 0x1p-149 -0x1p-149 -0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8.00001p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8.0000000000008p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8.000000000000001p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8.000000000000001p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8.0000000000000000000000000008p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8.00000000000000000000000004p+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,1) 0x8p-152 -0x8p-152 -0x8p+124 : -0x8p+124 : inexact
+fma 0x1p-149 0x1p-149 0x1p-126
+= fma downward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma tonearest binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma upward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4.000008p-128 : inexact
+= fma downward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma tonearest binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma upward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4.0000000000004p-128 : inexact
+= fma downward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma tonearest intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma upward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4.0000000000000008p-128 : inexact
+= fma downward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma tonearest m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma upward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4.0000000000000008p-128 : inexact
+= fma downward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma tonearest binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma upward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4.0000000000000000000000000004p-128 : inexact
+= fma downward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma tonearest ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma upward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 0x4p-128 : 0x4.00000000000000000000000002p-128 : inexact
+fma 0x1p-149 -0x1p-149 0x1p-126 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact underflow:before-rounding underflow-ok:arg-ibm128:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact underflow:before-rounding underflow-ok:arg-ibm128:before-rounding errno-erange-ok:before-rounding
+= fma downward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.ffffffffffffep-128 : inexact
+= fma tonearest binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.ffffffffffffep-128 : inexact
+= fma upward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma downward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffffffffffffffcp-128 : inexact
+= fma tonearest intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffffffffffffffcp-128 : inexact
+= fma upward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma downward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffffffffffffffcp-128 : inexact
+= fma tonearest m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffffffffffffffcp-128 : inexact
+= fma upward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma downward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffffffffffffffffffffffffffep-128 : inexact
+= fma tonearest binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.fffffffffffffffffffffffffffep-128 : inexact
+= fma upward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma downward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.ffffffffffffffffffffffffffp-128 : inexact
+= fma tonearest ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x3.ffffffffffffffffffffffffffp-128 : inexact
+= fma upward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 0x4p-128 : 0x4p-128 : inexact
+fma 0x1p-149 0x1p-149 -0x1p-126 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact underflow:before-rounding underflow-ok:arg-ibm128:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact underflow:before-rounding underflow-ok:arg-ibm128:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma tonearest binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact
+= fma upward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact
+= fma downward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma tonearest intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffffffffffffffcp-128 : inexact
+= fma upward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffffffffffffffcp-128 : inexact
+= fma downward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma tonearest m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffffffffffffffcp-128 : inexact
+= fma upward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffffffffffffffcp-128 : inexact
+= fma downward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma tonearest binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffffffffffffffffffffffffffep-128 : inexact
+= fma upward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.fffffffffffffffffffffffffffep-128 : inexact
+= fma downward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma tonearest ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.ffffffffffffffffffffffffffp-128 : inexact
+= fma upward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 0x8p-152 -0x4p-128 : -0x3.ffffffffffffffffffffffffffp-128 : inexact
+fma 0x1p-149 -0x1p-149 -0x1p-126
+= fma downward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4.000008p-128 : inexact
+= fma tonearest binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma upward binary32:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma downward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4.0000000000004p-128 : inexact
+= fma tonearest binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma upward binary64:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma downward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4.0000000000000008p-128 : inexact
+= fma tonearest intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma upward intel96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma downward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4.0000000000000008p-128 : inexact
+= fma tonearest m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma upward m68k96:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma downward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4.0000000000000000000000000004p-128 : inexact
+= fma tonearest binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma upward binary128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma downward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4.00000000000000000000000002p-128 : inexact
+= fma tonearest ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+= fma upward ibm128:arg_fmt(-126,1,-149,1) 0x8p-152 -0x8p-152 -0x4p-128 : -0x4p-128 : inexact
+fma 0x1p-149 0x1p-149 0x0.fffffep-126 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x4p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma tonearest binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma upward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff80000002p-128 : inexact
+= fma downward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma tonearest intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma upward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff80000000004p-128 : inexact
+= fma downward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma tonearest m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma upward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff80000000004p-128 : inexact
+= fma downward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma tonearest binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma upward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff80000000000000000000002p-128 : inexact
+= fma downward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma tonearest ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma upward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 0x3.fffff8p-128 : 0x3.fffff800000000000000000001p-128 : inexact
+fma 0x1p-149 -0x1p-149 0x0.fffffep-126 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffffp-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffffp-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7ffffffep-128 : inexact
+= fma tonearest binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7ffffffep-128 : inexact
+= fma upward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma downward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7fffffffffcp-128 : inexact
+= fma tonearest intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7fffffffffcp-128 : inexact
+= fma upward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma downward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7fffffffffcp-128 : inexact
+= fma tonearest m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7fffffffffcp-128 : inexact
+= fma upward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma downward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7fffffffffffffffffffffep-128 : inexact
+= fma tonearest binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7fffffffffffffffffffffep-128 : inexact
+= fma upward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma downward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7ffffffffffffffffffffp-128 : inexact
+= fma tonearest ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff7ffffffffffffffffffffp-128 : inexact
+= fma upward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 0x3.fffff8p-128 : 0x3.fffff8p-128 : inexact
+fma 0x1p-149 0x1p-149 -0x0.fffffep-126 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffffp-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffffp-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma tonearest binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7ffffffep-128 : inexact
+= fma upward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7ffffffep-128 : inexact
+= fma downward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma tonearest intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7fffffffffcp-128 : inexact
+= fma upward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7fffffffffcp-128 : inexact
+= fma downward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma tonearest m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7fffffffffcp-128 : inexact
+= fma upward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7fffffffffcp-128 : inexact
+= fma downward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma tonearest binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7fffffffffffffffffffffep-128 : inexact
+= fma upward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7fffffffffffffffffffffep-128 : inexact
+= fma downward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma tonearest ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7ffffffffffffffffffffp-128 : inexact
+= fma upward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 0x8p-152 -0x3.fffff8p-128 : -0x3.fffff7ffffffffffffffffffffp-128 : inexact
+fma 0x1p-149 -0x1p-149 -0x0.fffffep-126 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x4p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff80000002p-128 : inexact
+= fma tonearest binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma upward binary64:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma downward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff80000000004p-128 : inexact
+= fma tonearest intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma upward intel96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma downward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff80000000004p-128 : inexact
+= fma tonearest m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma upward m68k96:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma downward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff80000000000000000000002p-128 : inexact
+= fma tonearest binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma upward binary128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma downward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff800000000000000000001p-128 : inexact
+= fma tonearest ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma towardzero ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+= fma upward ibm128:arg_fmt(-127,23,-149,23) 0x8p-152 -0x8p-152 -0x3.fffff8p-128 : -0x3.fffff8p-128 : inexact
+fma 0x1p-149 0x1p-149 0x1p-149 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x1p-148 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma tonearest binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma upward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8.0000000000008p-152 : inexact
+= fma downward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma tonearest intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma upward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8.000000000000001p-152 : inexact
+= fma downward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma tonearest m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma upward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8.000000000000001p-152 : inexact
+= fma downward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma tonearest binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma upward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact
+= fma downward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma tonearest ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma upward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact
+fma 0x1p-149 -0x1p-149 0x1p-149 missing-errno missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x0p+0 : inexact underflow underflow-ok:arg-ibm128 errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x0p+0 : inexact underflow underflow-ok:arg-ibm128 errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.ffffffffffffcp-152 : inexact
+= fma tonearest binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.ffffffffffffcp-152 : inexact
+= fma upward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma downward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffff8p-152 : inexact
+= fma tonearest intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffff8p-152 : inexact
+= fma upward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma downward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffff8p-152 : inexact
+= fma tonearest m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffff8p-152 : inexact
+= fma upward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma downward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffffffffffffffffcp-152 : inexact
+= fma tonearest binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffffffffffffffffcp-152 : inexact
+= fma upward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma downward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffffffffffffffep-152 : inexact
+= fma tonearest ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+= fma towardzero ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x7.fffffffffffffffffffffffffep-152 : inexact
+= fma upward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 0x8p-152 : 0x8p-152 : inexact
+fma 0x1p-149 0x1p-149 -0x1p-149 missing-errno missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x0p+0 : inexact underflow underflow-ok:arg-ibm128 errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x0p+0 : inexact underflow underflow-ok:arg-ibm128 errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma tonearest binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact
+= fma upward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact
+= fma downward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma tonearest intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffff8p-152 : inexact
+= fma upward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffff8p-152 : inexact
+= fma downward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma tonearest m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffff8p-152 : inexact
+= fma upward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffff8p-152 : inexact
+= fma downward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma tonearest binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffffffffffffffffcp-152 : inexact
+= fma upward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffffffffffffffffcp-152 : inexact
+= fma downward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma tonearest ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffffffffffffffep-152 : inexact
+= fma upward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 0x8p-152 -0x8p-152 : -0x7.fffffffffffffffffffffffffep-152 : inexact
+fma 0x1p-149 -0x1p-149 -0x1p-149 missing-underflow:arg-ibm128
+= fma downward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x1p-148 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma tonearest binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma towardzero binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma upward binary32:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact underflow underflow-ok:arg-ibm128 errno-erange-ok
+= fma downward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8.0000000000008p-152 : inexact
+= fma tonearest binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma upward binary64:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma downward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8.000000000000001p-152 : inexact
+= fma tonearest intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma upward intel96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma downward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8.000000000000001p-152 : inexact
+= fma tonearest m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma upward m68k96:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma downward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8.0000000000000000000000000008p-152 : inexact
+= fma tonearest binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma upward binary128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma downward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8.00000000000000000000000004p-152 : inexact
+= fma tonearest ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma towardzero ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+= fma upward ibm128:arg_fmt(-149,1,-149,1) 0x8p-152 -0x8p-152 -0x8p-152 : -0x8p-152 : inexact
+fma 0x0.fffp0 0x0.fffp0 -0x0.ffep0
+= fma downward binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+fma 0x0.fffp0 -0x0.fffp0 0x0.ffep0
+= fma downward binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward binary32:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward binary64:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward intel96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward m68k96:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward binary128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward ibm128:arg_fmt(-1,12,-12,12) 0xf.ffp-4 -0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+fma -0x0.fffp0 0x0.fffp0 0x0.ffep0
+= fma downward binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma downward ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma tonearest ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma towardzero ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+= fma upward ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 0xf.ffp-4 0xf.fep-4 : -0x1p-24 :
+fma -0x0.fffp0 -0x0.fffp0 -0x0.ffep0
+= fma downward binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward binary32:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward binary64:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward intel96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward m68k96:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward binary128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma downward ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma tonearest ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma towardzero ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+= fma upward ibm128:arg_fmt(-1,12,-12,12) -0xf.ffp-4 -0xf.ffp-4 -0xf.fep-4 : 0x1p-24 :
+fma 0x1.000002p-126 0x1.000002p-26 0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8.00001p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8.0000000000008p+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8.000000000000001p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8.000000000000001p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8.0000000000000000000000000008p+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+124 : 0x8.00000000000000000000000004p+124 : inexact
+fma 0x1.000002p-126 -0x1.000002p-26 0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffff8p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffff8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.ffffffffffffcp+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.ffffffffffffcp+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffff8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffffffffffffffep+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x7.fffffffffffffffffffffffffep+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+124 : 0x8p+124 : inexact
+fma 0x1.000002p-126 0x1.000002p-26 -0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffff8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffff8p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.ffffffffffffcp+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.ffffffffffffcp+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffff8p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffffffffffffffffcp+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffffffffffffffep+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+124 : -0x7.fffffffffffffffffffffffffep+124 : inexact
+fma 0x1.000002p-126 -0x1.000002p-26 -0x1p127
+= fma downward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8.00001p+124 : inexact
+= fma tonearest binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma upward binary32:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma downward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8.0000000000008p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma upward binary64:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma downward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8.000000000000001p+124 : inexact
+= fma tonearest intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma upward intel96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma downward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8.000000000000001p+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma upward m68k96:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma downward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8.0000000000000000000000000008p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma upward binary128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma downward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8.00000000000000000000000004p+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+= fma upward ibm128:arg_fmt(127,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+124 : -0x8p+124 : inexact
+fma 0x1.000002p-126 0x1.000002p-26 0x1p103
+= fma downward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma tonearest binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma upward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8.00001p+100 : inexact
+= fma downward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma tonearest binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma upward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8.0000000000008p+100 : inexact
+= fma downward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma tonearest intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma upward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8.000000000000001p+100 : inexact
+= fma downward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma tonearest m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma upward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8.000000000000001p+100 : inexact
+= fma downward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma tonearest binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma upward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8.0000000000000000000000000008p+100 : inexact
+= fma downward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma tonearest ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma upward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 0x8p+100 : 0x8.00000000000000000000000004p+100 : inexact
+fma 0x1.000002p-126 -0x1.000002p-26 0x1p103
+= fma downward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffff8p+100 : inexact
+= fma tonearest binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffff8p+100 : inexact
+= fma upward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma downward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.ffffffffffffcp+100 : inexact
+= fma tonearest binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.ffffffffffffcp+100 : inexact
+= fma upward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma downward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffff8p+100 : inexact
+= fma tonearest intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffff8p+100 : inexact
+= fma upward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma downward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffff8p+100 : inexact
+= fma tonearest m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffff8p+100 : inexact
+= fma upward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma downward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffffffffffffffffcp+100 : inexact
+= fma tonearest binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffffffffffffffffcp+100 : inexact
+= fma upward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma downward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffffffffffffffep+100 : inexact
+= fma tonearest ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+= fma towardzero ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x7.fffffffffffffffffffffffffep+100 : inexact
+= fma upward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 0x8p+100 : 0x8p+100 : inexact
+fma 0x1.000002p-126 0x1.000002p-26 -0x1p103
+= fma downward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma tonearest binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffff8p+100 : inexact
+= fma upward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffff8p+100 : inexact
+= fma downward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma tonearest binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.ffffffffffffcp+100 : inexact
+= fma upward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.ffffffffffffcp+100 : inexact
+= fma downward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma tonearest intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffff8p+100 : inexact
+= fma upward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffff8p+100 : inexact
+= fma downward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma tonearest m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffff8p+100 : inexact
+= fma upward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffff8p+100 : inexact
+= fma downward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma tonearest binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffffffffffffffffcp+100 : inexact
+= fma upward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffffffffffffffffcp+100 : inexact
+= fma downward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma tonearest ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffffffffffffffep+100 : inexact
+= fma upward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 0x4.000008p-28 -0x8p+100 : -0x7.fffffffffffffffffffffffffep+100 : inexact
+fma 0x1.000002p-126 -0x1.000002p-26 -0x1p103
+= fma downward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8.00001p+100 : inexact
+= fma tonearest binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma upward binary32:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma downward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8.0000000000008p+100 : inexact
+= fma tonearest binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma upward binary64:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma downward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8.000000000000001p+100 : inexact
+= fma tonearest intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma upward intel96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma downward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8.000000000000001p+100 : inexact
+= fma tonearest m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma upward m68k96:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma downward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8.0000000000000000000000000008p+100 : inexact
+= fma tonearest binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma upward binary128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma downward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8.00000000000000000000000004p+100 : inexact
+= fma tonearest ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma towardzero ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+= fma upward ibm128:arg_fmt(103,1,-149,24) 0x4.000008p-128 -0x4.000008p-28 -0x8p+100 : -0x8p+100 : inexact
+fma 0x1.7fp+13 0x1.0000000000001p+0 0x1.ffep-48
+= fma downward binary32:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fep+12 : inexact
+= fma tonearest binary32:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fep+12 : inexact
+= fma towardzero binary32:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fep+12 : inexact
+= fma upward binary32:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe0004p+12 : inexact
+= fma downward binary64:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002p+12 : inexact
+= fma tonearest binary64:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002p+12 : inexact
+= fma towardzero binary64:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002p+12 : inexact
+= fma upward binary64:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000004p+12 : inexact
+= fma downward intel96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffcp+12 : inexact
+= fma tonearest intel96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000003p+12 : inexact
+= fma towardzero intel96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffcp+12 : inexact
+= fma upward intel96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000003p+12 : inexact
+= fma downward m68k96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffcp+12 : inexact
+= fma tonearest m68k96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000003p+12 : inexact
+= fma towardzero m68k96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffcp+12 : inexact
+= fma upward m68k96:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000003p+12 : inexact
+= fma downward binary128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma tonearest binary128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma towardzero binary128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma upward binary128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma downward ibm128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma tonearest ibm128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma towardzero ibm128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+= fma upward ibm128:arg_fmt(13,1,-59,53) 0x2.fep+12 0x1.0000000000001p+0 0x1.ffep-48 : 0x2.fe00000000002ffffep+12 :
+fma 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0
+= fma downward binary32:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma tonearest binary32:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma towardzero binary32:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma upward binary32:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma downward binary64:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma tonearest binary64:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma towardzero binary64:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma upward binary64:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma downward intel96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma tonearest intel96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma towardzero intel96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma upward intel96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma downward m68k96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma tonearest m68k96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma towardzero m68k96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma upward m68k96:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma downward binary128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma tonearest binary128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma towardzero binary128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma upward binary128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma downward ibm128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma tonearest ibm128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma towardzero ibm128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+= fma upward ibm128:arg_fmt(0,13,-52,53) 0x1.fffp+0 0x1.0000000000001p+0 -0x1.fffp+0 : 0x1.fffp-52 :
+fma 0x1.0000002p+0 0x1.ffffffcp-1 0x1p-300
+= fma downward binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.fffffp-4 : inexact
+= fma tonearest binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0x1p+0 : inexact
+= fma towardzero binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.fffffp-4 : inexact
+= fma upward binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0x1p+0 : inexact
+= fma downward binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffff8p-4 : inexact
+= fma tonearest binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0x1p+0 : inexact
+= fma towardzero binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffff8p-4 : inexact
+= fma upward binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0x1p+0 : inexact
+= fma downward intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma tonearest intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma upward intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffc01p-4 : inexact
+= fma downward m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma tonearest m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma upward m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffc01p-4 : inexact
+= fma downward binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma tonearest binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma upward binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffc000000000000008p-4 : inexact
+= fma downward ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma tonearest ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma upward ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 0x1p-300 : 0xf.ffffffffffffc0000000000004p-4 : inexact
+fma 0x1.0000002p+0 0x1.ffffffcp-1 -0x1p-300
+= fma downward binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.fffffp-4 : inexact
+= fma tonearest binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0x1p+0 : inexact
+= fma towardzero binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.fffffp-4 : inexact
+= fma upward binary32:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0x1p+0 : inexact
+= fma downward binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffff8p-4 : inexact
+= fma tonearest binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffff8p-4 : inexact
+= fma towardzero binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffff8p-4 : inexact
+= fma upward binary64:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0x1p+0 : inexact
+= fma downward intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffp-4 : inexact
+= fma tonearest intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffp-4 : inexact
+= fma upward intel96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma downward m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffp-4 : inexact
+= fma tonearest m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffp-4 : inexact
+= fma upward m68k96:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma downward binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffffffffffffff8p-4 : inexact
+= fma tonearest binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffffffffffffff8p-4 : inexact
+= fma upward binary128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma downward ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffffffffffffcp-4 : inexact
+= fma tonearest ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+= fma towardzero ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffbffffffffffffcp-4 : inexact
+= fma upward ibm128:arg_fmt(0,1,-300,28) 0x1.0000002p+0 0xf.fffffep-4 -0x1p-300 : 0xf.ffffffffffffcp-4 : inexact
+fma 0x1.deadbeef2feedp+1023 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp+1
+= fma downward binary32:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b4p-56 : inexact
+= fma tonearest binary32:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b4p-56 : inexact
+= fma towardzero binary32:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b4p-56 : inexact
+= fma upward binary32:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b5p-56 : inexact
+= fma downward binary64:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma tonearest binary64:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma towardzero binary64:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma upward binary64:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma downward intel96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma tonearest intel96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma towardzero intel96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma upward intel96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma downward m68k96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma tonearest m68k96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma towardzero m68k96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma upward m68k96:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma downward binary128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma tonearest binary128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma towardzero binary128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma upward binary128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma downward ibm128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma tonearest ibm128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma towardzero ibm128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+= fma upward ibm128:arg_fmt(1023,3,-1074,53) 0xe.f56df7797f768p+1020 0x3.7ab6fbbcbfbb4p-1024 -0x3.40bf1803497f6p+0 : 0x8.4c4b43de4ed2p-56 :
+fma 0x1.deadbeef2feedp+900 0x0.deadbeef2feedp-1022 -0x1.a05f8c01a4bfbp-122 missing-errno
+= fma downward binary32:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma tonearest binary64:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma towardzero binary64:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma upward binary64:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma downward intel96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma tonearest intel96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma towardzero intel96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma upward intel96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma downward m68k96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma tonearest m68k96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma towardzero m68k96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma upward m68k96:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma downward binary128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma tonearest binary128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma towardzero binary128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma upward binary128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma downward ibm128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma tonearest ibm128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma towardzero ibm128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+= fma upward ibm128:arg_fmt(900,3,-1074,53) 0x1.deadbeef2feedp+900 0x3.7ab6fbbcbfbb4p-1024 -0x6.817e300692fecp-124 : 0x1.0989687bc9da4p-176 :
+fma 0x1.fffffffffffffp+1023 0x1.001p+0 -0x1.fffffffffffffp+1023 missing-errno
+= fma downward binary32:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma tonearest binary64:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma towardzero binary64:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma upward binary64:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma downward intel96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma tonearest intel96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma towardzero intel96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma upward intel96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma downward m68k96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma tonearest m68k96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma towardzero m68k96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma upward m68k96:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma downward binary128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma tonearest binary128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma towardzero binary128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma upward binary128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma downward ibm128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma tonearest ibm128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma towardzero ibm128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+= fma upward ibm128:arg_fmt(1023,53,-12,53) 0xf.ffffffffffff8p+1020 0x1.001p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1008 :
+fma -0x1.fffffffffffffp+1023 0x1.fffffffffffffp+0 0x1.fffffffffffffp+1023 missing-errno
+= fma downward binary32:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.ffffffffffffp+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma upward binary64:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe801p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe801p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma tonearest binary128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma upward binary128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma downward ibm128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma tonearest ibm128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+= fma upward ibm128:arg_fmt(1023,53,-52,53) -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+0 0xf.ffffffffffff8p+1020 : -0xf.fffffffffffe80000000000008p+1020 :
+fma 0x1.fffffffffffffp+1023 2.0 -0x1.fffffffffffffp+1023 missing-errno
+= fma downward binary32:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma tonearest binary64:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary64:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma upward binary64:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma downward intel96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma tonearest intel96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero intel96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma upward intel96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma downward m68k96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma tonearest m68k96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero m68k96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma upward m68k96:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma downward binary128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma tonearest binary128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero binary128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma upward binary128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma downward ibm128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma tonearest ibm128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma towardzero ibm128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+= fma upward ibm128:arg_fmt(1023,53,1,53) 0xf.ffffffffffff8p+1020 0x2p+0 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 :
+fma 0x1.6a09e667f3bccp-538 0x1.6a09e667f3bccp-538 0.0 missing-errno
+= fma downward binary32:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672p-1076 : inexact
+= fma tonearest intel96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672p-1076 : inexact
+= fma towardzero intel96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672p-1076 : inexact
+= fma upward intel96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe674p-1076 : inexact
+= fma downward m68k96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672p-1076 : inexact
+= fma tonearest m68k96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672p-1076 : inexact
+= fma towardzero m68k96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672p-1076 : inexact
+= fma upward m68k96:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe674p-1076 : inexact
+= fma downward binary128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672b2f25faa9p-1076 :
+= fma tonearest binary128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672b2f25faa9p-1076 :
+= fma towardzero binary128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672b2f25faa9p-1076 :
+= fma upward binary128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x1.ffffffffffffe672b2f25faa9p-1076 :
+= fma downward ibm128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-538,1,-588,51) 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 0x0p+0 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1.deadbeef2feedp-495 0x1.deadbeef2feedp-495 -0x1.bf86a5786a574p-989 missing-errno
+= fma downward binary32:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma tonearest intel96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma towardzero intel96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma upward intel96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma downward m68k96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma tonearest m68k96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma towardzero m68k96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma upward m68k96:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma downward binary128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma tonearest binary128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma towardzero binary128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma upward binary128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687bc9da4p-1044 :
+= fma downward ibm128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.09896878p-1044 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-495,3,-1039,53) 0x3.bd5b7dde5fddap-496 0x3.bd5b7dde5fddap-496 -0xd.fc352bc352bap-992 : 0x1.0989687cp-1044 : inexact underflow errno-erange-ok
+fma 0x1.deadbeef2feedp-503 0x1.deadbeef2feedp-503 -0x1.bf86a5786a574p-1005 missing-errno
+= fma downward binary32:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.098cp-1060 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma tonearest intel96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma towardzero intel96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma upward intel96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma downward m68k96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma tonearest m68k96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma towardzero m68k96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma upward m68k96:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma downward binary128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma tonearest binary128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma towardzero binary128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma upward binary128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0989687bc9da4p-1060 :
+= fma downward ibm128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.0988p-1060 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-503,3,-1055,53) 0x3.bd5b7dde5fddap-504 0x3.bd5b7dde5fddap-504 -0xd.fc352bc352bap-1008 : 0x1.098cp-1060 : inexact underflow errno-erange-ok
+fma 0x1p-537 0x1p-538 0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma tonearest intel96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma towardzero intel96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma upward intel96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma downward m68k96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma tonearest m68k96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma towardzero m68k96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma upward m68k96:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma downward binary128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma tonearest binary128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma towardzero binary128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma upward binary128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x6p-1076 :
+= fma downward ibm128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-537,1,-1074,1) 0x8p-540 0x4p-540 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
+fma 0x1.7fffff8p-968 0x1p-106 0x0.000001p-1022 missing-errno
+= fma downward binary32:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma tonearest intel96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma towardzero intel96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma upward intel96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma downward m68k96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma tonearest m68k96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma towardzero m68k96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma upward m68k96:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma downward binary128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma tonearest binary128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma towardzero binary128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma upward binary128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000005fffffep-1048 :
+= fma downward ibm128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000004p-1048 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-106,1,-1046,26) 0x1.7fffff8p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
+fma 0x1.4000004p-967 0x1p-106 0x0.000001p-1022 missing-errno
+= fma downward binary32:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma tonearest intel96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma towardzero intel96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma upward intel96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma downward m68k96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma tonearest m68k96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma towardzero m68k96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma upward m68k96:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma downward binary128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma tonearest binary128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma towardzero binary128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma upward binary128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000a000002p-1048 :
+= fma downward ibm128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-106,1,-1046,27) 0x2.8000008p-968 0x4p-108 0x4p-1048 : 0x4.000000cp-1048 : inexact underflow errno-erange-ok
+fma 0x1.4p-967 -0x1p-106 -0x0.000001p-1022 missing-errno
+= fma downward binary32:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000cp-1048 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma tonearest intel96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma towardzero intel96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma upward intel96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma downward m68k96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma tonearest m68k96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma towardzero m68k96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma upward m68k96:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma downward binary128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma tonearest binary128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma towardzero binary128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma upward binary128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000ap-1048 :
+= fma downward ibm128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.000000cp-1048 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-106,1,-1046,3) 0x2.8p-968 -0x4p-108 -0x4p-1048 : -0x4.0000008p-1048 : inexact underflow errno-erange-ok
+fma -0x1.19cab66d73e17p-959 0x1.c7108a8c5ff51p-107 -0x0.80b0ad65d9b64p-1022 missing-errno
+= fma downward binary32:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a6p-1024 : inexact
+= fma tonearest intel96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a6p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5cp-1024 : inexact
+= fma upward intel96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5cp-1024 : inexact
+= fma downward m68k96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a6p-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a6p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5cp-1024 : inexact
+= fma upward m68k96:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5cp-1024 : inexact
+= fma downward binary128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5fda6ea7eab272p-1024 : inexact
+= fma tonearest binary128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5fda6ea7eab272p-1024 : inexact
+= fma towardzero binary128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5fda6ea7eab27p-1024 : inexact
+= fma upward binary128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767563a5fda6ea7eab27p-1024 : inexact
+= fma downward ibm128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b59767564p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-107,3,-1072,53) -0x2.33956cdae7c2ep-960 0x3.8e211518bfea2p-108 -0x2.02c2b59766d9p-1024 : -0x2.02c2b5976756p-1024 : inexact underflow errno-erange-ok
+fma -0x1.d2eaed6e8e9d3p-979 -0x1.4e066c62ac9ddp-63 -0x0.9245e6b003454p-1022 missing-errno
+= fma downward binary32:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed78p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471cp-1024 : inexact
+= fma tonearest intel96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471cp-1024 : inexact
+= fma towardzero intel96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74718p-1024 : inexact
+= fma upward intel96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74718p-1024 : inexact
+= fma downward m68k96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471cp-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471cp-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74718p-1024 : inexact
+= fma upward m68k96:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74718p-1024 : inexact
+= fma downward binary128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471a178ecc82ae6p-1024 : inexact
+= fma tonearest binary128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471a178ecc82ae5ep-1024 : inexact
+= fma towardzero binary128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471a178ecc82ae5ep-1024 : inexact
+= fma upward binary128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed7471a178ecc82ae5ep-1024 : inexact
+= fma downward ibm128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed78p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-63,1,-1072,53) -0x3.a5d5dadd1d3a6p-980 -0x2.9c0cd8c5593bap-64 -0x2.49179ac00d15p-1024 : -0x2.491702717ed74p-1024 : inexact underflow errno-erange-ok
+fma 0x1.153d650bb9f06p-907 0x1.2d01230d48407p-125 -0x0.b278d5acfc3cp-1022 missing-errno
+= fma downward binary32:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26ep-1024 : inexact
+= fma tonearest intel96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dcp-1024 : inexact
+= fma towardzero intel96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dcp-1024 : inexact
+= fma upward intel96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dcp-1024 : inexact
+= fma downward m68k96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26ep-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dcp-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dcp-1024 : inexact
+= fma downward binary128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dc1be63be78ed6p-1024 :
+= fma tonearest binary128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dc1be63be78ed6p-1024 :
+= fma towardzero binary128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dc1be63be78ed6p-1024 :
+= fma upward binary128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa26dc1be63be78ed6p-1024 :
+= fma downward ibm128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefa4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-125,1,-1068,53) 0x2.2a7aca1773e0cp-908 0x9.6809186a42038p-128 -0x2.c9e356b3f0fp-1024 : -0x2.c89d5c48eefap-1024 : inexact underflow errno-erange-ok
+fma -0x1.fffffffffffffp-711 0x1.fffffffffffffp-275 0x1.fffffe00007ffp-983 missing-errno
+= fma downward binary32:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffep-984 : inexact
+= fma tonearest binary64:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffep-984 : inexact
+= fma towardzero binary64:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffep-984 : inexact
+= fma upward binary64:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0001p-984 : inexact
+= fma downward intel96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffeffcp-984 : inexact
+= fma tonearest intel96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact
+= fma towardzero intel96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffeffcp-984 : inexact
+= fma upward intel96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact
+= fma downward m68k96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffeffcp-984 : inexact
+= fma tonearest m68k96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact
+= fma towardzero m68k96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffeffcp-984 : inexact
+= fma upward m68k96:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact
+= fma downward binary128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffffffcp-984 :
+= fma tonearest binary128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffffffcp-984 :
+= fma towardzero binary128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffffffcp-984 :
+= fma upward binary128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffffffcp-984 :
+= fma downward ibm128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffcp-984 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000ffefffffffffcp-984 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-275,53,-1035,53) -0x3.ffffffffffffep-712 0x3.ffffffffffffep-276 0x3.fffffc0000ffep-984 : 0x2.fffffc0000fffp-984 : inexact underflow errno-erange-ok
+fma 0x1.4p-1022 0x1.0000000000002p-1 0x1p-1024 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000008p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma tonearest intel96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma towardzero intel96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma upward intel96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma downward m68k96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma tonearest m68k96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma towardzero m68k96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma upward m68k96:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma downward binary128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000005p-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1024,52) 0x5p-1024 0x8.000000000001p-4 0x1p-1024 : 0x3.8000000000008p-1024 : inexact underflow errno-erange-ok
+fma -0x1.4p-1022 0x1.0000000000002p-1 -0x1p-1024 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000008p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma tonearest intel96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma towardzero intel96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma upward intel96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma downward m68k96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma tonearest m68k96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma towardzero m68k96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma upward m68k96:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma downward binary128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000005p-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000008p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1024,52) -0x5p-1024 0x8.000000000001p-4 -0x1p-1024 : -0x3.8000000000004p-1024 : inexact underflow errno-erange-ok
+fma 0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary64:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward intel96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact
+= fma downward m68k96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact
+= fma downward binary128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffffffffffff8p-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffffffffffff8p-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffffffffffff8p-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.fffffffffffffffffffffffff8p-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1074,53) 0x7.ffffffffffffp-1024 0x8.0000000000008p-4 0x4p-1076 : 0x4p-1024 : inexact underflow errno-erange-ok
+fma -0x1.ffffffffffffcp-1022 0x1.0000000000001p-1 -0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary64:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary64:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma downward m68k96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma downward binary128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffffffffffff8p-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffffffffffff8p-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffffffffffff8p-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.fffffffffffffffffffffffff8p-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1074,53) -0x7.ffffffffffffp-1024 0x8.0000000000008p-4 -0x4p-1076 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1 0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma tonearest intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma towardzero intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma upward intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma downward m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma tonearest m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma towardzero m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma upward m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma downward binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffep-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+fma -0x1p-1074 0x1p-1 -0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma tonearest intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma towardzero intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma upward intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma downward m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma tonearest m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma towardzero m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma upward m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma downward binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffep-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1.1p-1 0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma tonearest intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma towardzero intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma upward intel96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma downward m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma tonearest m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma towardzero m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma upward m68k96:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma downward binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffe2p-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1074,52) 0x4p-1076 0x8.8p-4 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+fma -0x1p-1074 0x1.1p-1 -0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma tonearest intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma towardzero intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma upward intel96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma downward m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma tonearest m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma towardzero m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma upward m68k96:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma downward binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma tonearest binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma towardzero binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma upward binary128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffe2p-1024 :
+= fma downward ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-1074,52) -0x4p-1076 0x8.8p-4 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1074 0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8.0000000000008p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8.000000000000001p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8.000000000000001p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8.0000000000000000000000000008p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 0x8p+1020 : 0x8.00000000000000000000000004p+1020 : inexact
+fma 0x1p-1074 -0x1p-1074 0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffffffffffffffep+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x7.fffffffffffffffffffffffffep+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 0x8p+1020 : 0x8p+1020 : inexact
+fma 0x1p-1074 0x1p-1074 -0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.ffffffffffffcp+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.ffffffffffffcp+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 0x4p-1076 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
+fma 0x1p-1074 -0x1p-1074 -0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8.0000000000008p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8.000000000000001p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8.000000000000001p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8.0000000000000000000000000008p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8.00000000000000000000000004p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x8p+1020 : -0x8p+1020 : inexact
+fma 0x1p-1074 0x1p-1074 0x1p-1022 missing-errno
+= fma downward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma tonearest binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma upward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4.0000000000004p-1024 : inexact
+= fma downward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma upward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4.0000000000000008p-1024 : inexact
+= fma downward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma upward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4.0000000000000008p-1024 : inexact
+= fma downward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma upward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4.0000000000000000000000000004p-1024 : inexact
+= fma downward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1024 : 0x4.0000000000004p-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 -0x1p-1074 0x1p-1022 missing-errno
+= fma downward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma downward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.fffffffffffffffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma downward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.fffffffffffffffffffffffffffep-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.fffffffffffffffffffffffffffep-1024 : inexact
+= fma upward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact
+= fma downward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1074 -0x1p-1022 missing-errno
+= fma downward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma downward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.fffffffffffffffcp-1024 : inexact
+= fma downward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.fffffffffffffffffffffffffffep-1024 : inexact
+= fma upward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.fffffffffffffffffffffffffffep-1024 : inexact
+= fma downward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 -0x1p-1074 -0x1p-1022 missing-errno
+= fma downward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4.0000000000004p-1024 : inexact
+= fma tonearest binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma upward binary64:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma downward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4.0000000000000008p-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma upward intel96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma downward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4.0000000000000008p-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma upward m68k96:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma downward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4.0000000000000000000000000004p-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma upward binary128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact
+= fma downward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4.0000000000004p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1022,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1074 0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffc004p-1024 : inexact
+= fma downward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffc004p-1024 : inexact
+= fma downward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma upward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffc000000000000002p-1024 : inexact
+= fma downward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 0x3.ffffffffffffcp-1024 : 0x4p-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 -0x1p-1074 0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffbffcp-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffbffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma downward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffbffcp-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffbffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma downward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffbffffffffffffffep-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffbffffffffffffffep-1024 : inexact
+= fma upward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact
+= fma downward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 0x3.ffffffffffffcp-1024 : 0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1074 -0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffbffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffbffcp-1024 : inexact
+= fma downward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffbffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffbffcp-1024 : inexact
+= fma downward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffbffffffffffffffep-1024 : inexact
+= fma upward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffbffffffffffffffep-1024 : inexact
+= fma downward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffff8p-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 -0x1p-1074 -0x0.fffffffffffffp-1022 missing-errno
+= fma downward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffc004p-1024 : inexact
+= fma tonearest intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma upward intel96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma downward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffc004p-1024 : inexact
+= fma tonearest m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma upward m68k96:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma downward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffc000000000000002p-1024 : inexact
+= fma tonearest binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma towardzero binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma upward binary128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact
+= fma downward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x4p-1024 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1023,52,-1074,52) 0x4p-1076 -0x4p-1076 -0x3.ffffffffffffcp-1024 : -0x3.ffffffffffffcp-1024 : inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1074 0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma tonearest intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma towardzero intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma upward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4.0000000000000008p-1076 : inexact
+= fma downward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma tonearest m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma towardzero m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma upward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4.0000000000000008p-1076 : inexact
+= fma downward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma tonearest binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma towardzero binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma upward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : inexact
+= fma downward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 0x4p-1076 : 0x8p-1076 : inexact underflow errno-erange-ok
+fma 0x1p-1074 -0x1p-1074 0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x3.fffffffffffffffcp-1076 : inexact
+= fma tonearest intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma towardzero intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x3.fffffffffffffffcp-1076 : inexact
+= fma upward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma downward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x3.fffffffffffffffcp-1076 : inexact
+= fma tonearest m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma towardzero m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x3.fffffffffffffffcp-1076 : inexact
+= fma upward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma downward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x3.fffffffffffffffffffffffffffep-1076 : inexact
+= fma tonearest binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma towardzero binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x3.fffffffffffffffffffffffffffep-1076 : inexact
+= fma upward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact
+= fma downward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 0x4p-1076 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-1074 0x1p-1074 -0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma tonearest intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma towardzero intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x3.fffffffffffffffcp-1076 : inexact
+= fma upward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x3.fffffffffffffffcp-1076 : inexact
+= fma downward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma tonearest m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma towardzero m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x3.fffffffffffffffcp-1076 : inexact
+= fma upward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x3.fffffffffffffffcp-1076 : inexact
+= fma downward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma tonearest binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma towardzero binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x3.fffffffffffffffffffffffffffep-1076 : inexact
+= fma upward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x3.fffffffffffffffffffffffffffep-1076 : inexact
+= fma downward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 0x4p-1076 -0x4p-1076 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-1074 -0x1p-1074 -0x1p-1074 missing-errno
+= fma downward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x8p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma upward binary64:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4.0000000000000008p-1076 : inexact
+= fma tonearest intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma towardzero intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma upward intel96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma downward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4.0000000000000008p-1076 : inexact
+= fma tonearest m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma towardzero m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma upward m68k96:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma downward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4.0000000000000000000000000004p-1076 : inexact
+= fma tonearest binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma towardzero binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma upward binary128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact
+= fma downward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x8p-1076 : inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma upward ibm128:arg_fmt(-1074,1,-1074,1) 0x4p-1076 -0x4p-1076 -0x4p-1076 : -0x4p-1076 : inexact underflow errno-erange-ok
+fma 0x0.fffffffffffff8p0 0x0.fffffffffffff8p0 -0x0.fffffffffffffp0
+= fma downward binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+fma 0x0.fffffffffffff8p0 -0x0.fffffffffffff8p0 0x0.fffffffffffffp0
+= fma downward binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward binary32:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward binary64:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward intel96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward m68k96:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward binary128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward ibm128:arg_fmt(-1,53,-53,53) 0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+fma -0x0.fffffffffffff8p0 0x0.fffffffffffff8p0 0x0.fffffffffffffp0
+= fma downward binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma downward ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma tonearest ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma towardzero ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+= fma upward ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-4 0xf.ffffffffffffp-4 : -0x4p-108 :
+fma -0x0.fffffffffffff8p0 -0x0.fffffffffffff8p0 -0x0.fffffffffffffp0
+= fma downward binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward binary32:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward binary64:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward intel96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward m68k96:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward binary128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma downward ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma tonearest ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma towardzero ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+= fma upward ibm128:arg_fmt(-1,53,-53,53) -0xf.ffffffffffff8p-4 -0xf.ffffffffffff8p-4 -0xf.ffffffffffffp-4 : 0x4p-108 :
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8.0000000000008p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8.000000000000001p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8.000000000000001p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8.0000000000000000000000000008p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x8p+1020 : 0x8.00000000000000000000000004p+1020 : inexact
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.ffffffffffffcp+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffff8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffffffffffffffep+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x7.fffffffffffffffffffffffffep+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x8p+1020 : 0x8p+1020 : inexact
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.ffffffffffffcp+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.ffffffffffffcp+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffff8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffffffffffffffffcp+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x8p+1020 : -0x7.fffffffffffffffffffffffffep+1020 : inexact
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p1023 missing-errno
+= fma downward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8.0000000000008p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward binary64:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8.000000000000001p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward intel96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8.000000000000001p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8.0000000000000000000000000008p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward binary128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8.00000000000000000000000004p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x8p+1020 : -0x8p+1020 : inexact
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 0x1p970 missing-errno
+= fma downward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma tonearest binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma upward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4.0000000000004p+968 : inexact
+= fma downward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma tonearest intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma upward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4.0000000000000008p+968 : inexact
+= fma downward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma tonearest m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma upward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4.0000000000000008p+968 : inexact
+= fma downward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma tonearest binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma upward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4.0000000000000000000000000004p+968 : inexact
+= fma downward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma tonearest ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma upward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 0x4p+968 : 0x4.00000000000000000000000002p+968 : inexact
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 0x1p970 missing-errno
+= fma downward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffep+968 : inexact
+= fma tonearest binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffep+968 : inexact
+= fma upward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma downward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.fffffffffffffffcp+968 : inexact
+= fma tonearest intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.fffffffffffffffcp+968 : inexact
+= fma upward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma downward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.fffffffffffffffcp+968 : inexact
+= fma tonearest m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.fffffffffffffffcp+968 : inexact
+= fma upward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma downward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.fffffffffffffffffffffffffffep+968 : inexact
+= fma tonearest binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.fffffffffffffffffffffffffffep+968 : inexact
+= fma upward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma downward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffffffffffffffffp+968 : inexact
+= fma tonearest ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+= fma towardzero ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x3.ffffffffffffffffffffffffffp+968 : inexact
+= fma upward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 0x4p+968 : 0x4p+968 : inexact
+fma 0x1.0000000000001p-1022 0x1.0000000000001p-55 -0x1p970 missing-errno
+= fma downward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma tonearest binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffep+968 : inexact
+= fma upward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffep+968 : inexact
+= fma downward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma tonearest intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.fffffffffffffffcp+968 : inexact
+= fma upward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.fffffffffffffffcp+968 : inexact
+= fma downward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma tonearest m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.fffffffffffffffcp+968 : inexact
+= fma upward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.fffffffffffffffcp+968 : inexact
+= fma downward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma tonearest binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.fffffffffffffffffffffffffffep+968 : inexact
+= fma upward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.fffffffffffffffffffffffffffep+968 : inexact
+= fma downward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma tonearest ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffffffffffffffffp+968 : inexact
+= fma upward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 0x2.0000000000002p-56 -0x4p+968 : -0x3.ffffffffffffffffffffffffffp+968 : inexact
+fma 0x1.0000000000001p-1022 -0x1.0000000000001p-55 -0x1p970 missing-errno
+= fma downward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4.0000000000004p+968 : inexact
+= fma tonearest binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma upward binary64:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma downward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4.0000000000000008p+968 : inexact
+= fma tonearest intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma upward intel96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma downward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4.0000000000000008p+968 : inexact
+= fma tonearest m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma upward m68k96:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma downward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4.0000000000000000000000000004p+968 : inexact
+= fma tonearest binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma upward binary128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma downward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4.00000000000000000000000002p+968 : inexact
+= fma tonearest ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma towardzero ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+= fma upward ibm128:arg_fmt(970,1,-1074,53) 0x4.0000000000004p-1024 -0x2.0000000000002p-56 -0x4p+968 : -0x4p+968 : inexact
+fma -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x8.3ffffffffffffffp-2450 missing-errno
+= fma downward binary32:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ecp-2440 : inexact
+= fma tonearest intel96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ecp-2440 : inexact
+= fma towardzero intel96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffffp-2440 : inexact
+= fma upward intel96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffffp-2440 : inexact
+= fma downward m68k96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ecp-2440 : inexact
+= fma tonearest m68k96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ecp-2440 : inexact
+= fma towardzero m68k96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffffp-2440 : inexact
+= fma upward m68k96:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffffp-2440 : inexact
+= fma downward binary128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
+= fma tonearest binary128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
+= fma towardzero binary128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
+= fma upward binary128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x8.01ebfffffffffff80004p-2440 :
+= fma downward ibm128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(3699,1,-6200,64) -0x8.03fcp+3696 0xf.fffffffffffffffp-6140 0x2.0ffffffffffffffcp-2448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x9.fcp+2033 -0x8.000e1f000ff800fp-3613 -0xf.fffffffffffc0ffp-1579 missing-errno
+= fma downward binary32:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68498p-1576 : inexact
+= fma tonearest intel96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
+= fma towardzero intel96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
+= fma upward intel96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
+= fma downward m68k96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68498p-1576 : inexact
+= fma tonearest m68k96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
+= fma towardzero m68k96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
+= fma upward m68k96:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f6849p-1576 : inexact
+= fma downward binary128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
+= fma tonearest binary128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
+= fma towardzero binary128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
+= fma upward binary128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x6.fe08cfd849f68493c4p-1576 :
+= fma downward ibm128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(2036,1,-3673,64) 0x1.3f8p+2036 -0x4.00070f8007fc0078p-3612 -0x1.ffffffffffff81fep-1576 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0xc.7fc000003ffffffp-1194 0x8.1e0003fffffffffp+15327 -0x8.fffep+14072 missing-errno
+= fma downward binary32:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffep+14136 : inexact
+= fma tonearest intel96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020effffp+14136 : inexact
+= fma towardzero intel96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffep+14136 : inexact
+= fma upward intel96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020effffp+14136 : inexact
+= fma downward m68k96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffep+14136 : inexact
+= fma tonearest m68k96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020effffp+14136 : inexact
+= fma towardzero m68k96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffep+14136 : inexact
+= fma upward m68k96:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020effffp+14136 : inexact
+= fma downward binary128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8p+14136 : inexact
+= fma tonearest binary128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8p+14136 : inexact
+= fma towardzero binary128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8p+14136 : inexact
+= fma upward binary128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xc.ae9f164020efffedc481f7ff8008p+14136 : inexact
+= fma downward ibm128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(15330,1,-1254,64) 0x3.1ff000000ffffffcp-1192 0x4.0f0001fffffffff8p+15328 -0x8.fffep+14072 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma -0x8.0001fc000000003p+1798 0xcp-2230 0x8.f7e000000000007p-468 missing-errno
+= fma downward binary32:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7084p-428 : inexact
+= fma tonearest binary64:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7084p-428 : inexact
+= fma towardzero binary64:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708p-428 : inexact
+= fma upward binary64:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708p-428 : inexact
+= fma downward intel96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082028p-428 : inexact
+= fma tonearest intel96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
+= fma towardzero intel96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
+= fma upward intel96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
+= fma downward m68k96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082028p-428 : inexact
+= fma tonearest m68k96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
+= fma towardzero m68k96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
+= fma upward m68k96:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff708202p-428 : inexact
+= fma downward binary128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma tonearest binary128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma towardzero binary128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma upward binary128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma downward ibm128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma tonearest ibm128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma towardzero ibm128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+= fma upward ibm128:arg_fmt(1801,1,-2228,64) -0x2.00007f000000000cp+1800 0x3p-2228 0x8.f7e000000000007p-468 : -0x6.00017cfff7082023ffffffff9p-428 :
+fma 0xc.0000000000007ffp+10130 -0x8.000000000000001p+4430 0xc.07000000001ffffp+14513 missing-errno
+= fma downward binary32:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf28p+14564 : inexact
+= fma tonearest intel96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
+= fma towardzero intel96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
+= fma upward intel96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
+= fma downward m68k96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf28p+14564 : inexact
+= fma tonearest m68k96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
+= fma towardzero m68k96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
+= fma upward m68k96:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf2p+14564 : inexact
+= fma downward binary128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffc0004p+14564 : inexact
+= fma tonearest binary128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffc0004p+14564 : inexact
+= fma towardzero binary128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffcp+14564 : inexact
+= fma upward binary128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0x5.fffffffffffebf23fffffffcp+14564 : inexact
+= fma downward ibm128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(14516,2,4370,64) 0x3.0000000000001ffcp+10132 -0x2.0000000000000004p+4432 0x1.80e000000003fffep+14516 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0xb.ffffp-4777 0x8.000000fffffffffp-11612 -0x0.3800fff8p-16385 missing-errno
+= fma downward binary32:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffcp-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fff8p-16384 : inexact
+= fma upward m68k96:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
+= fma tonearest binary128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
+= fma towardzero binary128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
+= fma upward binary128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x2.e3ff4063fff7fffa00008p-16384 :
+= fma downward ibm128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-4774,1,-16414,64) 0x5.ffff8p-4776 0x8.000000fffffffffp-11612 -0x1.c007ffcp-16388 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1.4p-16382 0x1.0000000000000004p-1 0x1p-16384 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000001p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000cp-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
+= fma tonearest binary128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
+= fma towardzero binary128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
+= fma upward binary128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x3.800000000000000ap-16384 :
+= fma downward ibm128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16384,63) 0x5p-16384 0x8.000000000000002p-4 0x1p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1.4p-16382 0x1.0000000000000004p-1 -0x1p-16384 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000001p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000cp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
+= fma tonearest binary128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
+= fma towardzero binary128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
+= fma upward binary128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x3.800000000000000ap-16384 :
+= fma downward ibm128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16384,63) -0x5p-16384 0x8.000000000000002p-4 -0x1p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 0x1p-16445 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward ibm128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16445,64) 0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 0x8p-16448 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1.fffffffffffffff8p-16382 0x1.0000000000000002p-1 -0x1p-16445 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16445,64) -0x7.ffffffffffffffep-16384 0x8.000000000000001p-4 -0x8p-16448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 0x1p-1 0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma tonearest m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma towardzero m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma upward m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma downward binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma tonearest binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma towardzero binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma upward binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 :
+= fma downward ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1p-16445 0x1p-1 -0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma tonearest m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma towardzero m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma upward m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma downward binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma tonearest binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma towardzero binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma upward binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 :
+= fma downward ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 0x1.1p-1 0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
+= fma tonearest binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
+= fma towardzero binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
+= fma upward binary128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffc4p-16384 :
+= fma downward ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16445,63) 0x8p-16448 0x8.8p-4 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1p-16445 0x1.1p-1 -0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
+= fma tonearest binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
+= fma towardzero binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
+= fma upward binary128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffc4p-16384 :
+= fma downward ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16445,63) -0x8p-16448 0x8.8p-4 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 0x1p-16445 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1p-16445 0x1p-16445 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8.0000000000000000000000000008p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1p-16445 0x1p-16445 0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma tonearest intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma upward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4.0000000000000008p-16384 : inexact
+= fma downward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4.0000000000000008p-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma tonearest binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma upward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4.0000000000000000000000000004p-16384 : inexact
+= fma downward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 0x4p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 0x4p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16445 0x1p-16445 -0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 0x8p-16448 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 -0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4.0000000000000008p-16384 : inexact
+= fma tonearest intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma upward intel96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma downward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4.0000000000000008p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4.0000000000000000000000000004p-16384 : inexact
+= fma tonearest binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma upward binary128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-16384 : inexact
+= fma downward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 0x1p-16445 0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8000000000004p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff4p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 0x3.fffffffffffffff8p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16445 0x1p-16445 -0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffp-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff4p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff7fffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 -0x0.fffffffffffffffep-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8000000000004p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,63,-16445,63) 0x8p-16448 -0x8p-16448 -0x3.fffffffffffffff8p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 0x1p-16445 0x1p-16445 missing-errno
+= fma downward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x1p-16444 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma upward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0xcp-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x8.000000000004p-16448 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 0x8p-16448 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 0x1p-16445 missing-errno
+= fma downward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma upward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x7.fffffffffffcp-16448 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x7.fffffffffffcp-16448 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 0x8p-16448 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16445 0x1p-16445 -0x1p-16445 missing-errno
+= fma downward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma upward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x7.fffffffffffcp-16448 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x7.fffffffffffcp-16448 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 0x8p-16448 -0x8p-16448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16445 -0x1p-16445 -0x1p-16445 missing-errno
+= fma downward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x1p-16444 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0xcp-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma upward m68k96:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8.000000000004p-16448 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16445,1,-16445,1) 0x8p-16448 -0x8p-16448 -0x8p-16448 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x0.ffffffffffffffffp0 0x0.ffffffffffffffffp0 -0x0.fffffffffffffffep0
+= fma downward binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+fma 0x0.ffffffffffffffffp0 -0x0.ffffffffffffffffp0 0x0.fffffffffffffffep0
+= fma downward binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward binary32:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward binary64:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward intel96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward m68k96:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward binary128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward ibm128:arg_fmt(-1,64,-64,64) 0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+fma -0x0.ffffffffffffffffp0 0x0.ffffffffffffffffp0 0x0.fffffffffffffffep0
+= fma downward binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma downward ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma tonearest ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma towardzero ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+= fma upward ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 0xf.fffffffffffffffp-4 0xf.ffffffffffffffep-4 : -0x1p-128 :
+fma -0x0.ffffffffffffffffp0 -0x0.ffffffffffffffffp0 -0x0.fffffffffffffffep0
+= fma downward binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward binary32:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward binary64:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward intel96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward m68k96:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward binary128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma downward ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma tonearest ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma towardzero ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+= fma upward ibm128:arg_fmt(-1,64,-64,64) -0xf.fffffffffffffffp-4 -0xf.fffffffffffffffp-4 -0xf.ffffffffffffffep-4 : 0x1p-128 :
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8.0000000000000000000000000008p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8.000000000000001p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8.000000000000001p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0x8.0000000000000000000000000008p+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 0x8p+16316 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 0x8p+16316 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000002p-16382 0x1.0000000000000002p-66 -0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.0000000000000002p-16382 -0x1.0000000000000002p-66 -0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8.000000000000001p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8.000000000000001p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8.0000000000000000000000000008p+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16445,64) 0x4.0000000000000008p-16384 -0x4.0000000000000008p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0x1.6b500daf0580d987f1bc0cadfcddp-13777 0x1.613cd91d9fed34b33820e5ab9d8dp-16378 missing-errno
+= fma downward binary32:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce888p-16360 : inexact
+= fma tonearest intel96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce888p-16360 : inexact
+= fma towardzero intel96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce886p-16360 : inexact
+= fma upward intel96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce886p-16360 : inexact
+= fma downward m68k96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce888p-16360 : inexact
+= fma tonearest m68k96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce888p-16360 : inexact
+= fma towardzero m68k96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce886p-16360 : inexact
+= fma upward m68k96:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce886p-16360 : inexact
+= fma downward binary128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9fp-16360 : inexact
+= fma tonearest binary128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9fp-16360 : inexact
+= fma towardzero binary128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9ep-16360 : inexact
+= fma upward binary128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x1.3a79fb50eb9ce887cffa0f09bd9ep-16360 : inexact
+= fma downward ibm128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-2584,2,-16490,113) 0x1.bb2de33e02ccbbfa6e245a7c1f71p-2584 -0xb.5a806d782c06cc3f8de0656fe6e8p-13780 0x5.84f364767fb4d2cce08396ae7634p-16380 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -0x1.f949b880cacb0f0c61540105321dp-5954 -0x1.3876cec84b4140f3bd6198731b7ep-10525 -0x0.a5dc1c6cfbc498c54fb0b504bf19p-16382 missing-errno
+= fma downward binary32:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef126318p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef126318p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef12631p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef12631p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef126318p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef126314p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef126314p-16384 : inexact
+= fma upward m68k96:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef126314p-16384 : inexact
+= fma downward binary128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2aecp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2aecp-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2ae8p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x2.977071b3ef1263153ec2d40e2ae8p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-5954,6,-16494,113) -0x7.e526e2032b2c3c3185500414c874p-5956 -0x9.c3b676425a0a079deb0cc398dbfp-10528 -0x2.977071b3ef1263153ec2d412fc64p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -0x1.0000fffffffffp-16221 0x1.0000001fffff8007fep-239 0x0.ff87ffffffffffffe000003fffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1ffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe2p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1ffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe2p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1ffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe2p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1ffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe2p-16384 : inexact
+= fma downward binary128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdf8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdfcp-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdf8p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x3.fe1fffffffffffff7ff000effdfcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-239,1,-16494,112) -0x8.0007ffffffff8p-16224 0x2.0000003fffff000ffcp-240 0x3.fe1fffffffffffff800000fffffcp-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x1.5ba830022b6139e21fbe7270cad8p-6314 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 missing-errno
+= fma downward binary32:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c539p-8544 : inexact
+= fma tonearest intel96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c53ap-8544 : inexact
+= fma towardzero intel96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c539p-8544 : inexact
+= fma upward intel96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c53ap-8544 : inexact
+= fma downward m68k96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c539p-8544 : inexact
+= fma tonearest m68k96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c53ap-8544 : inexact
+= fma towardzero m68k96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c539p-8544 : inexact
+= fma upward m68k96:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c53ap-8544 : inexact
+= fma downward binary128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d68p-8544 : inexact
+= fma tonearest binary128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d68p-8544 : inexact
+= fma towardzero binary128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d68p-8544 : inexact
+= fma upward binary128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x9.178a50129c3c5398668d771b9d7p-8544 : inexact
+= fma downward ibm128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-2228,2,-8728,113) -0x1.ac79c9376ef447f3827c9e9de008p-2228 -0x5.6ea0c008ad84e7887ef9c9c32b6p-6316 0x1.e8282b6a26bb6a9daf5c8e73e9f9p-8616 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0x1.f34235ff9d095449c29b4831b62dp+3311 0x1.fbe4302df23354dbd0c4d3cfe606p+5879 missing-errno
+= fma downward binary32:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e1ap+5964 : inexact
+= fma tonearest intel96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18p+5964 : inexact
+= fma towardzero intel96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18p+5964 : inexact
+= fma upward intel96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18p+5964 : inexact
+= fma downward m68k96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e1ap+5964 : inexact
+= fma tonearest m68k96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18p+5964 : inexact
+= fma towardzero m68k96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18p+5964 : inexact
+= fma upward m68k96:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18p+5964 : inexact
+= fma downward binary128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57ebp+5964 : inexact
+= fma tonearest binary128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57eafp+5964 : inexact
+= fma towardzero binary128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57eafp+5964 : inexact
+= fma upward binary128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0x1.bb473bfdfb7a6e18886ce6e57eafp+5964 : inexact
+= fma downward ibm128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(5879,6,2540,113) -0x1.c69749ec574caaa2ab8e97ddb9f3p+2652 0xf.9a11affce84aa24e14da418db168p+3308 0xf.df21816f919aa6de86269e7f303p+5876 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma -0x1.ca8835fc6ecfb5398625fc891be5p-1686 0x1.621e1972bbe2180e5be9dd7d8df5p-7671 -0x1.7d2d21b73b52cf20dec2a83902a4p-9395 missing-errno
+= fma downward binary32:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bep-9356 : inexact
+= fma tonearest intel96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bcp-9356 : inexact
+= fma towardzero intel96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bcp-9356 : inexact
+= fma upward intel96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bcp-9356 : inexact
+= fma downward m68k96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bep-9356 : inexact
+= fma tonearest m68k96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bcp-9356 : inexact
+= fma towardzero m68k96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bcp-9356 : inexact
+= fma upward m68k96:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bcp-9356 : inexact
+= fma downward binary128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042dp-9356 : inexact
+= fma tonearest binary128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042cp-9356 : inexact
+= fma towardzero binary128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042cp-9356 : inexact
+= fma upward binary128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x1.3d2322191c9c88bc68a62ab8042cp-9356 : inexact
+= fma downward ibm128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1686,3,-9505,113) -0x7.2a20d7f1bb3ed4e61897f2246f94p-1688 0x2.c43c32e577c4301cb7d3bafb1beap-7672 -0x2.fa5a436e76a59e41bd8550720548p-9396 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -0x1.55cff679ec49c2541fab41fc843ep-11819 0x1.e60e9f464f9e8df0509647c7c971p+12325 0x1.eaa2a7649d765c2f564f7a5beca7p+454 missing-errno
+= fma downward binary32:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2038p+504 : inexact
+= fma tonearest binary64:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2038p+504 : inexact
+= fma towardzero binary64:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203p+504 : inexact
+= fma upward binary64:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203p+504 : inexact
+= fma downward intel96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203515p+504 : inexact
+= fma tonearest intel96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203514p+504 : inexact
+= fma towardzero intel96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203514p+504 : inexact
+= fma upward intel96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203514p+504 : inexact
+= fma downward m68k96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203515p+504 : inexact
+= fma tonearest m68k96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203514p+504 : inexact
+= fma towardzero m68k96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203514p+504 : inexact
+= fma upward m68k96:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f203514p+504 : inexact
+= fma downward binary128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c38p+504 : inexact
+= fma tonearest binary128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c3p+504 : inexact
+= fma towardzero binary128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c3p+504 : inexact
+= fma upward binary128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7c3p+504 : inexact
+= fma downward ibm128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e8p+504 : inexact
+= fma tonearest ibm128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7cp+504 : inexact
+= fma towardzero ibm128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7cp+504 : inexact
+= fma upward ibm128:arg_fmt(12325,4,-11930,113) -0x2.ab9fecf3d89384a83f5683f9087cp-11820 0x3.cc1d3e8c9f3d1be0a12c8f8f92e2p+12324 0x7.aa8a9d9275d970bd593de96fb29cp+452 : -0xa.23f14fd3f2035142fa71a87e7cp+504 : inexact
+fma 0x1.f0e7b1454908576f2537d863cf9bp+11432 0x1.cdce52f09d4ca76e68706f34b5d5p-1417 -0x1.2e986187c70f146235ea2066e486p+9979 missing-errno
+= fma downward binary32:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f2p+10016 : inexact
+= fma tonearest intel96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f4p+10016 : inexact
+= fma towardzero intel96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f2p+10016 : inexact
+= fma upward intel96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f4p+10016 : inexact
+= fma downward m68k96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f2p+10016 : inexact
+= fma tonearest m68k96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f4p+10016 : inexact
+= fma towardzero m68k96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f2p+10016 : inexact
+= fma upward m68k96:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f4p+10016 : inexact
+= fma downward binary128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f661p+10016 : inexact
+= fma tonearest binary128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f661p+10016 : inexact
+= fma towardzero binary128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f661p+10016 : inexact
+= fma upward binary128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0x1.c030dad3cc5643f3dd0f5619f662p+10016 : inexact
+= fma downward ibm128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(11432,5,-1529,113) 0x1.f0e7b1454908576f2537d863cf9bp+11432 0xe.6e729784ea653b73438379a5aea8p-1420 -0x9.74c30c3e3878a311af510337243p+9976 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.f102f7da4a57a3a4aab620e29452p-3098 -0x1.cc06a4ff40248f9e2dcc4b6afd84p-11727 0x1.d512a11126b5ac8ed8973b8580c8p-14849 missing-errno
+= fma downward binary32:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1ep-14824 : inexact
+= fma tonearest intel96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1cp-14824 : inexact
+= fma towardzero intel96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1cp-14824 : inexact
+= fma upward intel96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1cp-14824 : inexact
+= fma downward m68k96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1ep-14824 : inexact
+= fma tonearest m68k96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1cp-14824 : inexact
+= fma towardzero m68k96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1cp-14824 : inexact
+= fma upward m68k96:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1cp-14824 : inexact
+= fma downward binary128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23bp-14824 : inexact
+= fma tonearest binary128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23bp-14824 : inexact
+= fma towardzero binary128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23ap-14824 : inexact
+= fma upward binary128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x1.be8f1cf737ab4d1c31c54f5ec23ap-14824 : inexact
+= fma downward ibm128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-3098,5,-14958,112) 0x7.c40bdf69295e8e92aad8838a5148p-3100 -0x3.980d49fe80491f3c5b9896d5fb08p-11728 0xe.a895088935ad6476c4b9dc2c064p-14852 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0x1.fbc9750da8468852d84558e1db6dp-5773 -0x1.00a98abf783f75c40fe5b7a37d86p-9607 missing-errno
+= fma downward binary32:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e78p-9588 : inexact
+= fma tonearest intel96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e76p-9588 : inexact
+= fma towardzero intel96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e76p-9588 : inexact
+= fma upward intel96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e76p-9588 : inexact
+= fma downward m68k96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e78p-9588 : inexact
+= fma tonearest m68k96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e76p-9588 : inexact
+= fma towardzero m68k96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e76p-9588 : inexact
+= fma upward m68k96:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e76p-9588 : inexact
+= fma downward binary128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2adp-9588 : inexact
+= fma tonearest binary128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2adp-9588 : inexact
+= fma towardzero binary128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2acp-9588 : inexact
+= fma upward binary128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x1.f81917b166f45e763cfcc057e2acp-9588 : inexact
+= fma downward ibm128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-3816,7,-9718,113) -0x1.fc47ac7434b993cd8dcb2b431f25p-3816 0xf.de4ba86d42344296c22ac70edb68p-5776 -0x2.0153157ef07eeb881fcb6f46fb0cp-9608 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1.00000000000007ffffffffffffffp-9045 -0x1.ffffffffffff80000001ffffffffp+4773 -0x1.f8p-4316 missing-errno
+= fma downward binary32:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1004p-4272 : inexact
+= fma tonearest intel96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1p-4272 : inexact
+= fma towardzero intel96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1p-4272 : inexact
+= fma upward intel96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1p-4272 : inexact
+= fma downward m68k96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1004p-4272 : inexact
+= fma tonearest m68k96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1p-4272 : inexact
+= fma towardzero m68k96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1p-4272 : inexact
+= fma upward m68k96:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f1p-4272 : inexact
+= fma downward binary128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfep-4272 : inexact
+= fma tonearest binary128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfep-4272 : inexact
+= fma towardzero binary128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfcp-4272 : inexact
+= fma upward binary128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x2.00000000001f10000001fffffbfcp-4272 : inexact
+= fma downward ibm128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(4773,50,-9157,113) 0x8.0000000000003ffffffffffffff8p-9048 -0x3.ffffffffffff00000003fffffffep+4772 -0x1.f8p-4316 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1.4e922764c90701d4a2f21d01893dp-8683 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0x1.e9634462eaef96528b90b6944578p-8521 missing-errno
+= fma downward binary32:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc658p-8472 : inexact
+= fma tonearest intel96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc65p-8472 : inexact
+= fma towardzero intel96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc65p-8472 : inexact
+= fma upward intel96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc65p-8472 : inexact
+= fma downward m68k96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc658p-8472 : inexact
+= fma tonearest m68k96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc65p-8472 : inexact
+= fma towardzero m68k96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc65p-8472 : inexact
+= fma upward m68k96:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc65p-8472 : inexact
+= fma downward binary128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d663842194p-8472 : inexact
+= fma tonearest binary128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d663842194p-8472 : inexact
+= fma towardzero binary128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d66384219p-8472 : inexact
+= fma upward binary128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4.2385e0c6128dc650f4d66384219p-8472 : inexact
+= fma downward ibm128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(212,2,-8795,113) 0x2.9d244ec9920e03a945e43a03127ap-8684 -0x1.955a12e2d7c9447c27fa022fc865p+212 -0xf.4b1a2317577cb2945c85b4a22bcp-8524 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1.801181509c03bdbef10d6165588cp-15131 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x1.6e9df0dab1c9f1d7a6043c390741p-15507 missing-errno
+= fma downward binary32:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab558p-15500 : inexact
+= fma tonearest intel96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab56p-15500 : inexact
+= fma towardzero intel96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab558p-15500 : inexact
+= fma upward intel96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab56p-15500 : inexact
+= fma downward m68k96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab558p-15500 : inexact
+= fma tonearest m68k96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab56p-15500 : inexact
+= fma towardzero m68k96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab558p-15500 : inexact
+= fma upward m68k96:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab56p-15500 : inexact
+= fma downward binary128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48210cp-15500 : inexact
+= fma tonearest binary128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48211p-15500 : inexact
+= fma towardzero binary128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48210cp-15500 : inexact
+= fma upward binary128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x5.05f26cac578ab55f72783a48211p-15500 : inexact
+= fma downward ibm128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-368,2,-15619,113) 0x3.002302a138077b7de21ac2cab118p-15132 0x1.ad86f8e57d3d40bfa8007780af63p-368 -0x2.dd3be1b56393e3af4c0878720e82p-15508 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1.ffffffffffffffp0 0x1.000000000000008p0 -0x1p-1000
+= fma downward binary32:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffep+0 : inexact
+= fma tonearest binary32:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma towardzero binary32:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffep+0 : inexact
+= fma upward binary32:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma downward binary64:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffffffffffp+0 : inexact
+= fma tonearest binary64:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma towardzero binary64:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffffffffffp+0 : inexact
+= fma upward binary64:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma downward intel96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffffffffffffep+0 : inexact
+= fma tonearest intel96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma towardzero intel96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffffffffffffep+0 : inexact
+= fma upward intel96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma downward m68k96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffffffffffffep+0 : inexact
+= fma tonearest m68k96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma towardzero m68k96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.fffffffffffffffep+0 : inexact
+= fma upward m68k96:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma downward binary128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.ffffffffffffffffffffffffffffp+0 : inexact
+= fma tonearest binary128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.ffffffffffffffffffffffffffffp+0 : inexact
+= fma towardzero binary128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.ffffffffffffffffffffffffffffp+0 : inexact
+= fma upward binary128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma downward ibm128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.ffffffffffffffffffffffffff8p+0 : inexact
+= fma tonearest ibm128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+= fma towardzero ibm128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x1.ffffffffffffffffffffffffff8p+0 : inexact
+= fma upward ibm128:arg_fmt(0,57,-1000,58) 0x1.ffffffffffffffp+0 0x1.000000000000008p+0 -0x1p-1000 : 0x2p+0 : inexact
+fma 0x1.4p-16382 0x1.0000000000000000000000000002p-1 0x1p-16384 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8p-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000004p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x3.8000000000000000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16384,112) 0x5p-16384 0x8.000000000000000000000000001p-4 0x1p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1.4p-16382 0x1.0000000000000000000000000002p-1 -0x1p-16384 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8p-16384 : inexact underflow errno-erange-ok
+= fma towardzero intel96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000004p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8p-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000008p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x3.8000000000000000000000000004p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16384,112) -0x5p-16384 0x8.000000000000000000000000001p-4 -0x1p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 0x1p-16494 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward ibm128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16494,113) 0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 0x4p-16496 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1.fffffffffffffffffffffffffffcp-16382 0x1.0000000000000000000000000001p-1 -0x1p-16494 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16494,113) -0x7.fffffffffffffffffffffffffffp-16384 0x8.0000000000000000000000000008p-4 -0x4p-16496 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 0x1p-1 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1p-16494 0x1p-1 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 0x1.1p-1 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16494,112) 0x4p-16496 0x8.8p-4 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma -0x1p-16494 0x1.1p-1 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-1,1,-16494,112) -0x4p-16496 0x8.8p-4 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 0x1p-16494 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1p-16494 0x1p-16494 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 0x4p-16496 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8.0000000000000000000000000008p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1p-16494 0x1p-16494 0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma tonearest intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma upward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4.0000000000000008p-16384 : inexact
+= fma downward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4.0000000000000008p-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma tonearest binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma upward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4.0000000000000000000000000004p-16384 : inexact
+= fma downward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16494 0x1p-16494 -0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 -0x1p-16382 missing-errno
+= fma downward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4.0000000000000008p-16384 : inexact
+= fma tonearest intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma upward intel96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma downward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4.0000000000000008p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma upward m68k96:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4.0000000000000000000000000004p-16384 : inexact
+= fma tonearest binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma towardzero binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma upward binary128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-16384 : inexact
+= fma downward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16382,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma downward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 0x3.fffffffffffffffffffffffffffcp-16384 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16494 0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 -0x0.ffffffffffffffffffffffffffffp-16382 missing-errno
+= fma downward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma tonearest intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow:before-rounding errno-erange-ok:before-rounding
+= fma towardzero intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma upward intel96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffff8p-16384 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma tonearest m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact
+= fma towardzero m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma upward m68k96:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffcp-16384 : inexact
+= fma downward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-16384 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x3.fffffffffffffffffffffffffffcp-16384 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16383,112,-16494,112) 0x4p-16496 -0x4p-16496 -0x3.fffffffffffffffffffffffffffcp-16384 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 0x1p-16494 0x1p-16494 missing-errno
+= fma downward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x8p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 0x4p-16496 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 0x1p-16494 missing-errno
+= fma downward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x4p-1076 : inexact underflow errno-erange-ok
+= fma downward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x8p-16448 : inexact underflow errno-erange-ok
+= fma downward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x4p-16448 : inexact underflow errno-erange-ok
+= fma downward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 0x4p-16496 : 0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+fma 0x1p-16494 0x1p-16494 -0x1p-16494 missing-errno
+= fma downward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 0x4p-16496 -0x4p-16496 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x1p-16494 -0x1p-16494 -0x1p-16494 missing-errno
+= fma downward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-1076 : inexact underflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary64:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x8p-16448 : inexact underflow errno-erange-ok
+= fma tonearest intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward intel96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16448 : inexact underflow errno-erange-ok
+= fma tonearest m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward m68k96:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x8p-16496 : inexact underflow errno-erange-ok
+= fma tonearest binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma towardzero binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma upward binary128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-16496 : inexact underflow errno-erange-ok
+= fma downward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x4p-1076 : xfail:ibm128-libgcc inexact underflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+= fma upward ibm128:arg_fmt(-16494,1,-16494,1) 0x4p-16496 -0x4p-16496 -0x4p-16496 : -0x0p+0 : xfail:ibm128-libgcc inexact underflow errno-erange errno-erange-ok
+fma 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0 missing-errno
+= fma downward binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+fma 0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0 missing-errno
+= fma downward binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward binary64:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward intel96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward m68k96:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward binary128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward ibm128:arg_fmt(-1,113,-113,113) 0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+fma -0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffff8p0 0x0.ffffffffffffffffffffffffffffp0 missing-errno
+= fma downward binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x8p-152 : inexact underflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma downward ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma tonearest ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma towardzero ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+= fma upward ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffff8p-4 0xf.fffffffffffffffffffffffffffp-4 : -0x4p-228 :
+fma -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffff8p0 -0x0.ffffffffffffffffffffffffffffp0 missing-errno
+= fma downward binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x0p+0 : inexact underflow errno-erange errno-erange-ok
+= fma upward binary32:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x8p-152 : inexact underflow errno-erange-ok
+= fma downward binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward binary64:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward intel96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward m68k96:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward binary128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma downward ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma tonearest ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma towardzero ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+= fma upward ibm128:arg_fmt(-1,113,-113,113) -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffff8p-4 -0xf.fffffffffffffffffffffffffffp-4 : 0x4p-228 :
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8.000000000000001p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffff8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x7.fffffffffffffffffffffffffffcp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16383 missing-errno
+= fma downward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward intel96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8.000000000000001p+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8.0000000000000000000000000008p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0x8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8.000000000000001p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8.000000000000001p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8.0000000000000000000000000008p+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffff8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0x8p+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 0x8p+16316 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-66 -0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffff8p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x7.fffffffffffffffffffffffffffcp+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-66 -0x1p16319 missing-errno
+= fma downward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8.000000000000001p+16316 : inexact
+= fma tonearest intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma upward intel96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma downward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8.000000000000001p+16316 : inexact
+= fma tonearest m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma upward m68k96:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma downward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8.0000000000000000000000000008p+16316 : inexact
+= fma tonearest binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma towardzero binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma upward binary128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0x8p+16316 : inexact
+= fma downward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16319,1,-16494,113) 0x4.0000000000000000000000000004p-16384 -0x4.0000000000000000000000000004p-68 -0x8p+16316 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.fffffep-126 0x1.fffffep25 0x1.fffffep127 missing-errno xfail-rounding:ibm128-libgcc
+= fma downward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma tonearest binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma tonearest binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffff00000008p+124 : xfail:ibm128-libgcc inexact
+= fma downward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffff0000000001p+124 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffff0000000001p+124 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma tonearest binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffff00000000000000000000008p+124 : xfail:ibm128-libgcc inexact
+= fma downward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma tonearest ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffff000000000000000000004p+124 : xfail:ibm128-libgcc inexact
+fma 0x1.fffffep-126 -0x1.fffffep25 0x1.fffffep127
+= fma downward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffep+124 : inexact
+= fma tonearest binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffep+124 : inexact
+= fma upward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma downward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffefffffff8p+124 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffefffffff8p+124 : inexact
+= fma upward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma downward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffp+124 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffp+124 : inexact
+= fma upward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma downward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffp+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffp+124 : inexact
+= fma upward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma downward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffffffffffffff8p+124 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffffffffffffff8p+124 : inexact
+= fma upward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma downward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffffffffffffcp+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.ffffeffffffffffffffffffffcp+124 : inexact
+= fma upward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 0xf.fffffp+124 : 0xf.fffffp+124 : inexact
+fma 0x1.fffffep-126 0x1.fffffep25 -0x1.fffffep127
+= fma downward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma tonearest binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffep+124 : inexact
+= fma upward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffep+124 : inexact
+= fma downward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma tonearest binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffefffffff8p+124 : inexact
+= fma upward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffefffffff8p+124 : inexact
+= fma downward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma tonearest intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffp+124 : inexact
+= fma upward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffp+124 : inexact
+= fma downward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma tonearest m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffp+124 : inexact
+= fma upward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffp+124 : inexact
+= fma downward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma tonearest binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffffffffffffff8p+124 : inexact
+= fma upward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffffffffffffff8p+124 : inexact
+= fma downward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma tonearest ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffffffffffffcp+124 : inexact
+= fma upward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.ffffeffffffffffffffffffffcp+124 : inexact
+fma 0x1.fffffep-126 -0x1.fffffep25 -0x1.fffffep127 missing-errno xfail-rounding:ibm128-libgcc
+= fma downward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward binary32:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma downward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffff00000008p+124 : xfail:ibm128-libgcc inexact
+= fma tonearest binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma downward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffff0000000001p+124 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffff0000000001p+124 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffff00000000000000000000008p+124 : xfail:ibm128-libgcc inexact
+= fma tonearest binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward binary128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma downward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffff000000000000000000004p+124 : xfail:ibm128-libgcc inexact
+= fma tonearest ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : inexact
+= fma towardzero ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+= fma upward ibm128:arg_fmt(127,24,-149,24) 0x7.fffff8p-128 -0x3.fffffcp+24 -0xf.fffffp+124 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact
+fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-errno xfail-rounding:ibm128-libgcc
+= fma downward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff801p+1020 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff801p+1020 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8000000000000008p+1020 : xfail:ibm128-libgcc inexact
+= fma downward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff80000000000004p+1020 : xfail:ibm128-libgcc inexact
+fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 0x1.fffffffffffffp1023 missing-errno
+= fma downward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffp+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffp+1020 : inexact
+= fma upward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma downward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffp+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffp+1020 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffp+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffp+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffffffffffffff8p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffffffffffffff8p+1020 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffffffffffffcp+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff7ffffffffffffcp+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact
+fma 0x1.fffffffffffffp-1022 0x1.fffffffffffffp54 -0x1.fffffffffffffp1023 missing-errno
+= fma downward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma tonearest binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffffp+1020 : inexact
+= fma upward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffffp+1020 : inexact
+= fma downward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffp+1020 : inexact
+= fma upward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffp+1020 : inexact
+= fma downward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffp+1020 : inexact
+= fma upward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffp+1020 : inexact
+= fma downward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffffffffffffff8p+1020 : inexact
+= fma upward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffffffffffffff8p+1020 : inexact
+= fma downward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma tonearest ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffffffffffffcp+1020 : inexact
+= fma upward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff7ffffffffffffcp+1020 : inexact
+fma 0x1.fffffffffffffp-1022 -0x1.fffffffffffffp54 -0x1.fffffffffffffp1023 missing-errno xfail-rounding:ibm128-libgcc
+= fma downward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.fffffp+124 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary64:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma downward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff801p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward intel96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma downward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff801p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward m68k96:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma downward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8000000000000008p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward binary128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma downward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff80000000000004p+1020 : xfail:ibm128-libgcc inexact
+= fma tonearest ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : inexact
+= fma towardzero ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+= fma upward ibm128:arg_fmt(1023,53,-1074,53) 0x7.ffffffffffffcp-1024 -0x7.ffffffffffffcp+52 -0xf.ffffffffffff8p+1020 : -0xf.ffffffffffff8p+1020 : xfail:ibm128-libgcc inexact
+fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383 missing-errno
+= fma downward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffff0000000000008p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 0x1.fffffffffffffffep16383 missing-errno
+= fma downward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffep+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffep+16380 : inexact
+= fma upward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffep+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffep+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma downward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffeffffffffffff8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffffeffffffffffff8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 0xf.fffffffffffffffp+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.fffffffffffffffep-16382 0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383 missing-errno
+= fma downward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffep+16380 : inexact
+= fma upward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffep+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffep+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffep+16380 : inexact
+= fma downward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffeffffffffffff8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffffeffffffffffff8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.fffffffffffffffep-16382 -0x1.fffffffffffffffep65 -0x1.fffffffffffffffep16383 missing-errno
+= fma downward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward intel96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffff0000000000008p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,64,-16445,64) 0x7.fffffffffffffff8p-16384 -0x3.fffffffffffffffcp+64 -0xf.fffffffffffffffp+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383 missing-errno
+= fma downward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 0x1.ffffffffffffffffffffffffffffp16383 missing-errno
+= fma downward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma tonearest m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffp+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma downward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffffp+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffffp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 0xf.fffffffffffffffffffffffffff8p+16380 : plus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+fma 0x1.ffffffffffffffffffffffffffffp-16382 0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383 missing-errno
+= fma downward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma tonearest binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffffp+16380 : inexact
+= fma upward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffffp+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+fma 0x1.ffffffffffffffffffffffffffffp-16382 -0x1.ffffffffffffffffffffffffffffp114 -0x1.ffffffffffffffffffffffffffffp16383 missing-errno
+= fma downward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma upward binary32:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffp+124 : inexact overflow errno-erange-ok
+= fma downward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma upward binary64:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffff8p+1020 : inexact overflow errno-erange-ok
+= fma downward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward intel96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma upward m68k96:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffp+16380 : inexact
+= fma downward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma tonearest binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma towardzero binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma upward binary128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.fffffffffffffffffffffffffff8p+16380 : inexact
+= fma downward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : xfail:ibm128-libgcc inexact overflow errno-erange errno-erange-ok
+= fma tonearest ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : minus_infty : inexact overflow errno-erange errno-erange-ok
+= fma towardzero ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
+= fma upward ibm128:arg_fmt(16383,113,-16494,113) 0x7.fffffffffffffffffffffffffffcp-16384 -0x7.fffffffffffffffffffffffffffcp+112 -0xf.fffffffffffffffffffffffffff8p+16380 : -0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact overflow errno-erange-ok
index 287896d76934ae0aa29f2aeaa0e85aa87b778fc0..b6a4ed010ccb0badd22160b25ed9a788085bcfe3 100644 (file)
@@ -26,6 +26,9 @@ __MATHCALL_NARROW (__MATHCALL_NAME (add), __MATHCALL_REDIR_NAME (add), 2);
 /* Divide.  */
 __MATHCALL_NARROW (__MATHCALL_NAME (div), __MATHCALL_REDIR_NAME (div), 2);
 
+/* Fused multiply-add.  */
+__MATHCALL_NARROW (__MATHCALL_NAME (fma), __MATHCALL_REDIR_NAME2 (fma), 3);
+
 /* Multiply.  */
 __MATHCALL_NARROW (__MATHCALL_NAME (mul), __MATHCALL_REDIR_NAME (mul), 2);
 
index 858fd4c309259de4690d3ea9d7aa2484cab865bd..6d32a4b6e4b4588963652949a814f62319cf104f 100755 (executable)
@@ -696,8 +696,8 @@ class Tests(object):
         self.add_tests('fromfpx', 'intmax_t', ['r', 'int', 'unsigned int'])
         self.add_tests('ufromfp', 'uintmax_t', ['r', 'int', 'unsigned int'])
         self.add_tests('ufromfpx', 'uintmax_t', ['r', 'int', 'unsigned int'])
-        for fn, args in (('add', 2), ('div', 2), ('mul', 2), ('sqrt', 1),
-                         ('sub', 2)):
+        for fn, args in (('add', 2), ('div', 2), ('fma', 3), ('mul', 2),
+                         ('sqrt', 1), ('sub', 2)):
             for ret, prefix in (('float', 'f'),
                                 ('double', 'd'),
                                 ('_Float16', 'f16'),
index ae0b3127081e806a75b4e2afc325ff6c6c9594d5..e122f94f7cad5bfc0fe57815fd37a711d2c1ef2b 100644 (file)
@@ -189,6 +189,16 @@ struct test_aa_f_data
     int exceptions;
   } rd, rn, rz, ru;
 };
+struct test_aaa_f_data
+{
+  const char *arg_str;
+  ARG_FLOAT arg1, arg2, arg3;
+  struct
+  {
+    FLOAT expected;
+    int exceptions;
+  } rd, rn, rz, ru;
+};
 #endif
 struct test_fi_f_data
 {
@@ -536,8 +546,8 @@ struct test_Ff_b1_data
 #define RUN_TEST_LOOP_fl_f RUN_TEST_LOOP_2_f
 #define RUN_TEST_if_f RUN_TEST_2_f
 #define RUN_TEST_LOOP_if_f RUN_TEST_LOOP_2_f
-#define RUN_TEST_fff_f(ARG_STR, FUNC_NAME, ARG1, ARG2, ARG3,           \
-                      EXPECTED, EXCEPTIONS)                            \
+#define RUN_TEST_3_f(ARG_STR, FUNC_NAME, ARG1, ARG2, ARG3,             \
+                    EXPECTED, EXCEPTIONS)                              \
   do                                                                   \
     if (enable_test (EXCEPTIONS))                                      \
       {                                                                        \
@@ -547,14 +557,16 @@ struct test_Ff_b1_data
        COMMON_TEST_CLEANUP;                                            \
       }                                                                        \
   while (0)
-#define RUN_TEST_LOOP_fff_f(FUNC_NAME, ARRAY, ROUNDING_MODE)           \
+#define RUN_TEST_LOOP_3_f(FUNC_NAME, ARRAY, ROUNDING_MODE)             \
   IF_ROUND_INIT_ ## ROUNDING_MODE                                      \
     for (size_t i = 0; i < sizeof (ARRAY) / sizeof (ARRAY)[0]; i++)    \
-      RUN_TEST_fff_f ((ARRAY)[i].arg_str, FUNC_NAME, (ARRAY)[i].arg1,  \
-                     (ARRAY)[i].arg2, (ARRAY)[i].arg3,                 \
-                     (ARRAY)[i].RM_##ROUNDING_MODE.expected,           \
-                     (ARRAY)[i].RM_##ROUNDING_MODE.exceptions);        \
+      RUN_TEST_3_f ((ARRAY)[i].arg_str, FUNC_NAME, (ARRAY)[i].arg1,    \
+                   (ARRAY)[i].arg2, (ARRAY)[i].arg3,                   \
+                   (ARRAY)[i].RM_##ROUNDING_MODE.expected,             \
+                   (ARRAY)[i].RM_##ROUNDING_MODE.exceptions);          \
   ROUND_RESTORE_ ## ROUNDING_MODE
+#define RUN_TEST_LOOP_fff_f RUN_TEST_LOOP_3_f
+#define RUN_TEST_LOOP_aaa_f RUN_TEST_LOOP_3_f
 #define RUN_TEST_fiu_M(ARG_STR, FUNC_NAME, ARG1, ARG2, ARG3,           \
                       EXPECTED, EXCEPTIONS)                            \
   do                                                                   \
diff --git a/math/libm-test-narrow-fma.inc b/math/libm-test-narrow-fma.inc
new file mode 100644 (file)
index 0000000..9b34c04
--- /dev/null
@@ -0,0 +1,361 @@
+/* Test narrowing fma.
+   Copyright (C) 1997-2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include "libm-test-driver.c"
+
+static const struct test_aaa_f_data fma_test_data[] =
+  {
+    TEST_aaa_f (fma, arg_qnan_value, 2.0, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, 2.0, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_snan_value, 2.0, 3.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, -arg_snan_value, 2.0, 3.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 1.0, arg_qnan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, -arg_qnan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, arg_snan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 1.0, -arg_snan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 1.0, 2.0, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, 2.0, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, 2.0, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 1.0, 2.0, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_max_value, arg_max_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_max_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_min_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_min_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_min_subnorm_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_min_subnorm_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_max_value, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_max_value, arg_max_value, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_min_value, arg_min_value, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_min_value, arg_min_value, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_min_subnorm_value, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_min_subnorm_value, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_qnan_value, arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_qnan_value, arg_qnan_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_qnan_value, -arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_qnan_value, -arg_qnan_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, arg_qnan_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, -arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, -arg_qnan_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_snan_value, arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_qnan_value, arg_snan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_qnan_value, arg_qnan_value, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_snan_value, arg_snan_value, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 1.0, arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, arg_qnan_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, -arg_qnan_value, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, -arg_qnan_value, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 1.0, arg_snan_value, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_qnan_value, 2.0, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_qnan_value, 2.0, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, 2.0, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, 2.0, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_snan_value, 2.0, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_qnan_value, arg_qnan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_qnan_value, -arg_qnan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, arg_qnan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_qnan_value, -arg_qnan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_snan_value, arg_snan_value, 3.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_plus_infty, 0.0, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, arg_plus_infty, 0.0, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, arg_minus_infty, 0.0, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, arg_minus_infty, 0.0, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, arg_plus_infty, 0.0, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_plus_infty, 0.0, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, 0.0, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, 0.0, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 0.0, arg_plus_infty, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, 0.0, arg_plus_infty, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, 0.0, arg_minus_infty, arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, 0.0, arg_minus_infty, -arg_qnan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION_OK),
+    TEST_aaa_f (fma, 0.0, arg_plus_infty, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 0.0, arg_plus_infty, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 0.0, arg_minus_infty, arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 0.0, arg_minus_infty, -arg_snan_value, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    /* Bug 6801: errno setting may be missing.  */
+    TEST_aaa_f (fma, arg_plus_infty, 0.0, 1.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, 0.0, 1.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 0.0, arg_plus_infty, 1.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, 0.0, arg_minus_infty, 1.0, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_minus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_plus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_plus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_minus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_plus_infty, 3.5L, arg_minus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, -7.5L, arg_minus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, -13.5L, arg_plus_infty, arg_plus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+    TEST_aaa_f (fma, arg_minus_infty, 7.5L, arg_plus_infty, qnan_value, NO_INEXACT_EXCEPTION|INVALID_EXCEPTION),
+
+    TEST_aaa_f (fma, -arg_max_value, -arg_max_value, arg_minus_infty, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_max_value / 2, arg_max_value / 2, arg_minus_infty, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_max_value, arg_plus_infty, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_max_value / 2, -arg_max_value / 4, arg_plus_infty, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, 4, arg_plus_infty, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, 2, arg_minus_infty, arg_minus_infty, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_plus_infty, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_plus_infty, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_minus_infty, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_minus_infty, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_plus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_minus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_plus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_minus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_max_value, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_value, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, arg_min_subnorm_value, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_max_value, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_value, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_plus_infty, -arg_min_subnorm_value, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_max_value, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_value, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, arg_min_subnorm_value, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_max_value, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_value, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_minus_infty, -arg_min_subnorm_value, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_max_value, arg_plus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_value, arg_plus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_plus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_max_value, arg_plus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_value, arg_plus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_plus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_max_value, arg_minus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_value, arg_minus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, arg_plus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, arg_minus_zero, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, -arg_min_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, -arg_min_subnorm_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, arg_min_subnorm_value, arg_minus_infty, -arg_max_value, minus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_max_value, arg_minus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_value, arg_minus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, arg_plus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, arg_minus_zero, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, -arg_min_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, -arg_min_subnorm_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+    TEST_aaa_f (fma, -arg_min_subnorm_value, arg_minus_infty, -arg_max_value, plus_infty, NO_INEXACT_EXCEPTION|ERRNO_UNCHANGED|XFAIL_ROUNDING_IBM128_LIBGCC),
+
+    AUTO_TESTS_aaa_f (fma),
+  };
+
+static void
+fma_test (void)
+{
+  ALL_RM_TEST (fma, 1, fma_test_data, RUN_TEST_LOOP_aaa_f, END);
+}
+
+static void
+do_test (void)
+{
+  fma_test ();
+}
+
+/*
+ * Local Variables:
+ * mode:c
+ * End:
+ */
index 0194f8c97e701663bf64065a4c231fbcaad0f006..fee00f12df92c9f3c79456bb123c819bf44ba096 100644 (file)
     }                                          \
   while (0)
 
+/* Check for error conditions from a narrowing fused multiply-add
+   function returning RET with arguments X, Y and Z and set errno as
+   needed.  Checking for error conditions for fma (either narrowing or
+   not) and setting errno is not currently implemented.  See bug
+   6801.  */
+#define CHECK_NARROW_FMA(RET, X, Y, Z)         \
+  do                                           \
+    {                                          \
+    }                                          \
+  while (0)
+
+/* Implement narrowing fused multiply-add using round-to-odd.  The
+   arguments are X, Y and Z, the return type is TYPE and UNION,
+   MANTISSA, SUFFIX and CLEAR_UNDERFLOW are as for ROUND_TO_ODD.  */
+#define NARROW_FMA_ROUND_TO_ODD(X, Y, Z, TYPE, UNION, SUFFIX, MANTISSA, \
+                               CLEAR_UNDERFLOW)                        \
+  do                                                                   \
+    {                                                                  \
+      typeof (X) tmp;                                                  \
+      TYPE ret;                                                                \
+                                                                       \
+      tmp = ROUND_TO_ODD (fma ## SUFFIX (math_opt_barrier (X), (Y),    \
+                                        (Z)),                          \
+                         UNION, SUFFIX, MANTISSA, CLEAR_UNDERFLOW);    \
+      /* If the round-to-odd result is zero, the result is an exact    \
+        zero and must be recomputed in the original rounding mode.  */ \
+      if (tmp == 0)                                                    \
+       ret = (TYPE) (math_opt_barrier (X) * (Y) + (Z));                \
+      else                                                             \
+       ret = (TYPE) tmp;                                               \
+                                                                       \
+      CHECK_NARROW_FMA (ret, (X), (Y), (Z));                           \
+      return ret;                                                      \
+    }                                                                  \
+  while (0)
+
+/* Implement a narrowing fused multiply-add function where no attempt
+   is made to be correctly rounding (this only applies to IBM long
+   double; the case where the function is not actually narrowing is
+   handled by aliasing other fma functions in libm, not using this
+   macro).  The arguments are X, Y and Z and the return type is
+   TYPE.  */
+#define NARROW_FMA_TRIVIAL(X, Y, Z, TYPE, SUFFIX)      \
+  do                                                   \
+    {                                                  \
+      TYPE ret;                                                \
+                                                       \
+      ret = (TYPE) (fma ## SUFFIX ((X), (Y), (Z)));    \
+      CHECK_NARROW_FMA (ret, (X), (Y), (Z));           \
+      return ret;                                      \
+    }                                                  \
+  while (0)
+
 #endif /* math-narrow.h.  */
index 2dc5c5d2cb098cd3d83842f0e8edb4714f45a658..33ec7d13008b32cf462f45977572cf63a1fcf738 100644 (file)
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 double
 __fma (double x, double y, double z)
@@ -27,4 +32,5 @@ __fma (double x, double y, double z)
 }
 #ifndef __fma
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 #endif
index 47a68ed235fc0ca6fa46f064757a1dcb881803df..bac664ab4a53bf743ab9bd473135abb9b93e8e68 100644 (file)
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define f64xfmaf128 __hide_f64xfmaf128
 #include <math.h>
+#undef f64xfmaf128
 #include <libm-alias-ldouble.h>
+#include <math-narrow-alias.h>
 
 long double
 __fmal (long double x, long double y, long double z)
@@ -26,3 +29,4 @@ __fmal (long double x, long double y, long double z)
   return (x * y) + z;
 }
 libm_alias_ldouble (__fma, fma)
+libm_alias_ldouble_narrow (__fma, fma)
index 5f19cf482159dad67ef2d97e1049434a787c1470..5fdc7982b27051249920617510c547103bb76f8a 100644 (file)
   (F ## l (X))
 # define __TGMATH_2_NARROW_D(F, X, Y)          \
   (F ## l (X, Y))
+# define __TGMATH_3_NARROW_D(F, X, Y, Z)       \
+  (F ## l (X, Y, Z))
 # define __TGMATH_1_NARROW_F64X(F, X)          \
   (F ## f128 (X))
 # define __TGMATH_2_NARROW_F64X(F, X, Y)       \
   (F ## f128 (X, Y))
+# define __TGMATH_3_NARROW_F64X(F, X, Y, Z)    \
+  (F ## f128 (X, Y, Z))
 # if !__HAVE_FLOAT128
 #  define __TGMATH_1_NARROW_F32X(F, X)         \
   (F ## f64 (X))
 #  define __TGMATH_2_NARROW_F32X(F, X, Y)      \
   (F ## f64 (X, Y))
+#  define __TGMATH_3_NARROW_F32X(F, X, Y, Z)   \
+  (F ## f64 (X, Y, Z))
 # endif
 
 # if __HAVE_BUILTIN_TGMATH
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F (F) (X))
 #  define __TGMATH_2_NARROW_F(F, X, Y)                         \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F (F) (X), (Y))
+#  define __TGMATH_3_NARROW_F(F, X, Y, Z)                      \
+  __builtin_tgmath (__TGMATH_NARROW_FUNCS_F (F) (X), (Y), (Z))
 #  define __TGMATH_1_NARROW_F16(F, X)                          \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F16 (F) (X))
 #  define __TGMATH_2_NARROW_F16(F, X, Y)                       \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F16 (F) (X), (Y))
+#  define __TGMATH_3_NARROW_F16(F, X, Y, Z)                            \
+  __builtin_tgmath (__TGMATH_NARROW_FUNCS_F16 (F) (X), (Y), (Z))
 #  define __TGMATH_1_NARROW_F32(F, X)                          \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F32 (F) (X))
 #  define __TGMATH_2_NARROW_F32(F, X, Y)                       \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F32 (F) (X), (Y))
+#  define __TGMATH_3_NARROW_F32(F, X, Y, Z)                            \
+  __builtin_tgmath (__TGMATH_NARROW_FUNCS_F32 (F) (X), (Y), (Z))
 #  define __TGMATH_1_NARROW_F64(F, X)                          \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F64 (F) (X))
 #  define __TGMATH_2_NARROW_F64(F, X, Y)                       \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F64 (F) (X), (Y))
+#  define __TGMATH_3_NARROW_F64(F, X, Y, Z)                            \
+  __builtin_tgmath (__TGMATH_NARROW_FUNCS_F64 (F) (X), (Y), (Z))
 #  if __HAVE_FLOAT128
 #   define __TGMATH_1_NARROW_F32X(F, X)                                \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F32X (F) (X))
 #   define __TGMATH_2_NARROW_F32X(F, X, Y)                     \
   __builtin_tgmath (__TGMATH_NARROW_FUNCS_F32X (F) (X), (Y))
+#   define __TGMATH_3_NARROW_F32X(F, X, Y, Z)                          \
+  __builtin_tgmath (__TGMATH_NARROW_FUNCS_F32X (F) (X), (Y), (Z))
 #  endif
 
 # else /* !__HAVE_BUILTIN_TGMATH.  */
                          + (__tgmath_real_type (Y)) 0) > sizeof (double) \
                  ? F ## l (X, Y)                                       \
                  : F (X, Y)))
+#  define __TGMATH_3_NARROW_F(F, X, Y, Z)                              \
+  (__extension__ (sizeof ((__tgmath_real_type (X)) 0                   \
+                         + (__tgmath_real_type (Y)) 0                  \
+                         + (__tgmath_real_type (Z)) 0) > sizeof (double) \
+                 ? F ## l (X, Y, Z)                                    \
+                 : F (X, Y, Z)))
 /* In most cases, these narrowing macro definitions based on sizeof
    ensure that the function called has the right argument format, as
    for other <tgmath.h> macros for compilers before GCC 8, but may not
                  ? __TGMATH_F128 ((X) + (Y), F, (X, Y))                \
                  F ## f64x (X, Y)                                      \
                  : F ## f64 (X, Y)))
+#   define __TGMATH_3_NARROW_F32(F, X, Y, Z)                           \
+  (__extension__ (sizeof ((__tgmath_real_type (X)) 0                   \
+                         + (__tgmath_real_type (Y)) 0                  \
+                         + (__tgmath_real_type (Z)) 0) > sizeof (_Float64) \
+                 ? __TGMATH_F128 ((X) + (Y) + (Z), F, (X, Y, Z))       \
+                 F ## f64x (X, Y, Z)                                   \
+                 : F ## f64 (X, Y, Z)))
 #   define __TGMATH_1_NARROW_F64(F, X)                                 \
   (__extension__ (sizeof ((__tgmath_real_type (X)) 0) > sizeof (_Float64) \
                  ? __TGMATH_F128 ((X), F, (X))                         \
                  ? __TGMATH_F128 ((X) + (Y), F, (X, Y))                \
                  F ## f64x (X, Y)                                      \
                  : F ## f128 (X, Y)))
+#   define __TGMATH_3_NARROW_F64(F, X, Y, Z)                           \
+  (__extension__ (sizeof ((__tgmath_real_type (X)) 0                   \
+                         + (__tgmath_real_type (Y)) 0                  \
+                         + (__tgmath_real_type (Z)) 0) > sizeof (_Float64) \
+                 ? __TGMATH_F128 ((X) + (Y) + (Z), F, (X, Y, Z))       \
+                 F ## f64x (X, Y, Z)                                   \
+                 : F ## f128 (X, Y, Z)))
 #   define __TGMATH_1_NARROW_F32X(F, X)                                        \
   (__extension__ (sizeof ((__tgmath_real_type (X)) 0) > sizeof (_Float64) \
                  ? __TGMATH_F128 ((X), F, (X))                         \
                  ? __TGMATH_F128 ((X) + (Y), F, (X, Y))                \
                  F ## f64x (X, Y)                                      \
                  : F ## f64 (X, Y)))
+#   define __TGMATH_3_NARROW_F32X(F, X, Y, Z)                          \
+  (__extension__ (sizeof ((__tgmath_real_type (X)) 0                   \
+                         + (__tgmath_real_type (Y)) 0                  \
+                         + (__tgmath_real_type (Z)) 0) > sizeof (_Float64) \
+                 ? __TGMATH_F128 ((X) + (Y) + (Z), F, (X, Y, Z))       \
+                 F ## f64x (X, Y, Z)                                   \
+                 : F ## f64 (X, Y, Z)))
 #  elif __HAVE_FLOAT128
 #   define __TGMATH_1_NARROW_F32(F, X)                                 \
   (__extension__ (sizeof ((__tgmath_real_type (X)) 0) > sizeof (_Float64) \
                          + (__tgmath_real_type (Y)) 0) > sizeof (_Float64) \
                  ? F ## f128 (X, Y)                                    \
                  : F ## f64 (X, Y)))
+#   define __TGMATH_3_NARROW_F32(F, X, Y, Z)                           \
+  (__extension__ (sizeof ((__tgmath_real_type (X)) 0                   \
+                         + (__tgmath_real_type (Y)) 0                  \
+                         + (__tgmath_real_type (Z)) 0) > sizeof (_Float64) \
+                 ? F ## f128 (X, Y, Z)                                 \
+                 : F ## f64 (X, Y, Z)))
 #   define __TGMATH_1_NARROW_F64(F, X)         \
   (F ## f128 (X))
 #   define __TGMATH_2_NARROW_F64(F, X, Y)      \
   (F ## f128 (X, Y))
+#   define __TGMATH_3_NARROW_F64(F, X, Y, Z)   \
+  (F ## f128 (X, Y, Z))
 #   define __TGMATH_1_NARROW_F32X(F, X)                                        \
   (__extension__ (sizeof ((__tgmath_real_type (X)) 0) > sizeof (_Float32x) \
                  ? F ## f64x (X)                                       \
                          + (__tgmath_real_type (Y)) 0) > sizeof (_Float32x) \
                  ? F ## f64x (X, Y)                                    \
                  : F ## f64 (X, Y)))
+#   define __TGMATH_3_NARROW_F32X(F, X, Y, Z)                          \
+  (__extension__ (sizeof ((__tgmath_real_type (X)) 0                   \
+                         + (__tgmath_real_type (Y)) 0                  \
+                         + (__tgmath_real_type (Z)) 0) > sizeof (_Float32x) \
+                 ? F ## f64x (X, Y, Z)                                 \
+                 : F ## f64 (X, Y, Z)))
 #  else
 #   define __TGMATH_1_NARROW_F32(F, X)         \
   (F ## f64 (X))
 #   define __TGMATH_2_NARROW_F32(F, X, Y)      \
   (F ## f64 (X, Y))
+#   define __TGMATH_3_NARROW_F32(F, X, Y, Z)   \
+  (F ## f64 (X, Y, Z))
 #  endif
 # endif /* !__HAVE_BUILTIN_TGMATH.  */
 #else
 # define fsqrt(Val) __TGMATH_1_NARROW_F (fsqrt, Val)
 # define dsqrt(Val) __TGMATH_1_NARROW_D (dsqrt, Val)
 
+/* Fused multiply-add.  */
+# define ffma(Val1, Val2, Val3) __TGMATH_3_NARROW_F (ffma, Val1, Val2, Val3)
+# define dfma(Val1, Val2, Val3) __TGMATH_3_NARROW_D (dfma, Val1, Val2, Val3)
+
 #endif
 
 #if __GLIBC_USE (IEC_60559_TYPES_EXT)
 #  define f16mul(Val1, Val2) __TGMATH_2_NARROW_F16 (f16mul, Val1, Val2)
 #  define f16sub(Val1, Val2) __TGMATH_2_NARROW_F16 (f16sub, Val1, Val2)
 #  define f16sqrt(Val) __TGMATH_1_NARROW_F16 (f16sqrt, Val)
+#  define f16fma(Val1, Val2, Val3)                     \
+  __TGMATH_3_NARROW_F16 (f16fma, Val1, Val2, Val3)
 # endif
 
 # if __HAVE_FLOAT32
 #  define f32mul(Val1, Val2) __TGMATH_2_NARROW_F32 (f32mul, Val1, Val2)
 #  define f32sub(Val1, Val2) __TGMATH_2_NARROW_F32 (f32sub, Val1, Val2)
 #  define f32sqrt(Val) __TGMATH_1_NARROW_F32 (f32sqrt, Val)
+#  define f32fma(Val1, Val2, Val3)                     \
+  __TGMATH_3_NARROW_F32 (f32fma, Val1, Val2, Val3)
 # endif
 
 # if __HAVE_FLOAT64 && (__HAVE_FLOAT64X || __HAVE_FLOAT128)
 #  define f64mul(Val1, Val2) __TGMATH_2_NARROW_F64 (f64mul, Val1, Val2)
 #  define f64sub(Val1, Val2) __TGMATH_2_NARROW_F64 (f64sub, Val1, Val2)
 #  define f64sqrt(Val) __TGMATH_1_NARROW_F64 (f64sqrt, Val)
+#  define f64fma(Val1, Val2, Val3)                     \
+  __TGMATH_3_NARROW_F64 (f64fma, Val1, Val2, Val3)
 # endif
 
 # if __HAVE_FLOAT32X
 #  define f32xmul(Val1, Val2) __TGMATH_2_NARROW_F32X (f32xmul, Val1, Val2)
 #  define f32xsub(Val1, Val2) __TGMATH_2_NARROW_F32X (f32xsub, Val1, Val2)
 #  define f32xsqrt(Val) __TGMATH_1_NARROW_F32X (f32xsqrt, Val)
+#  define f32xfma(Val1, Val2, Val3)                    \
+  __TGMATH_3_NARROW_F32X (f32xfma, Val1, Val2, Val3)
 # endif
 
 # if __HAVE_FLOAT64X && (__HAVE_FLOAT128X || __HAVE_FLOAT128)
 #  define f64xmul(Val1, Val2) __TGMATH_2_NARROW_F64X (f64xmul, Val1, Val2)
 #  define f64xsub(Val1, Val2) __TGMATH_2_NARROW_F64X (f64xsub, Val1, Val2)
 #  define f64xsqrt(Val) __TGMATH_1_NARROW_F64X (f64xsqrt, Val)
+#  define f64xfma(Val1, Val2, Val3)                    \
+  __TGMATH_3_NARROW_F64X (f64xfma, Val1, Val2, Val3)
 # endif
 
 #endif
index 229f6c6526e422fd2ee0f3e31f7376473dfd074f..c003317bf7522ee9dba9aa43c4d9ed6909003520 100644 (file)
 #define NO_MATH_REDIRECT
 #include <config.h>
 
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <init-arch.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 extern double __fma_ia32 (double x, double y, double z) attribute_hidden;
 extern double __fma_fma (double x, double y, double z) attribute_hidden;
@@ -29,6 +34,7 @@ extern double __fma_fma (double x, double y, double z) attribute_hidden;
 libm_ifunc (__fma,
            CPU_FEATURE_USABLE (FMA) ? __fma_fma : __fma_ia32);
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 
 #define __fma __fma_ia32
 
index c6346553bd8b13265c3e1f1ee8f1c47b611d2e91..511cec4e9bf21cb1f598bd011ad26bc85128d4b0 100644 (file)
@@ -69,3 +69,4 @@ GLOBAL_LIBM_ENTRY(fma)
 
 GLOBAL_LIBM_END(fma)
 libm_alias_double_other (fma, fma)
+libm_alias_double_narrow (fma, fma)
index 60881124b1690dadd015278449697b9e6342d4d2..21eb24f704413ff5d94bbe5eb4a57226132515cc 100644 (file)
@@ -69,3 +69,4 @@ GLOBAL_LIBM_ENTRY(fmal)
 
 GLOBAL_LIBM_END(fmal)
 libm_alias_ldouble_other (fma, fma)
+libm_alias_ldouble_narrow (fma, fma)
diff --git a/sysdeps/ieee754/dbl-64/s_f32xfmaf64.c b/sysdeps/ieee754/dbl-64/s_f32xfmaf64.c
new file mode 100644 (file)
index 0000000..8ee50d9
--- /dev/null
@@ -0,0 +1 @@
+/* Defined as an alias of fma.  */
diff --git a/sysdeps/ieee754/dbl-64/s_ffma.c b/sysdeps/ieee754/dbl-64/s_ffma.c
new file mode 100644 (file)
index 0000000..6af70d6
--- /dev/null
@@ -0,0 +1,35 @@
+/* Fused multiply-add of double value, narrowing the result to float.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32fmaf64 __hide_f32fmaf64
+#define f32fmaf32x __hide_f32fmaf32x
+#define ffmal __hide_ffmal
+#include <math.h>
+#undef f32fmaf64
+#undef f32fmaf32x
+#undef ffmal
+
+#include <math-narrow.h>
+
+float
+__ffma (double x, double y, double z)
+{
+  NARROW_FMA_ROUND_TO_ODD (x, y, z, float, union ieee754_double, , mantissa1,
+                          false);
+}
+libm_alias_float_double (fma)
index aa4336387a8d6f59b8a5abebf897b52c362c2650..87e59033e480af731ce269f057677c35113a4a33 100644 (file)
 
 #define NO_MATH_REDIRECT
 #include <float.h>
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <fenv.h>
 #include <ieee754.h>
 #include <math-barriers.h>
 #include <fenv_private.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 #include <tininess.h>
 #include <math-use-builtins.h>
 
@@ -301,4 +306,5 @@ __fma (double x, double y, double z)
 }
 #ifndef __fma
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 #endif
index 13d1d63baf1ec9b1cfed4ba99d3e9e84dddb7fdf..a3c8d4c63a0ebd98389b6284807f90761872e912 100644 (file)
 #define __daddl __f64addf128
 #define __fdivl __f32divf128
 #define __ddivl __f64divf128
+#define __ffmal __f32fmaf128
+#define __dfmal __f64fmaf128
 #define __fmull __f32mulf128
 #define __dmull __f64mulf128
 #define __fsqrtl __f32sqrtf128
diff --git a/sysdeps/ieee754/float128/s_f32fmaf128.c b/sysdeps/ieee754/float128/s_f32fmaf128.c
new file mode 100644 (file)
index 0000000..459903d
--- /dev/null
@@ -0,0 +1,6 @@
+#define f32fmaf64x __hide_f32fmaf64x
+#define f32fmaf128 __hide_f32fmaf128
+#include <float128_private.h>
+#undef f32fmaf64x
+#undef f32fmaf128
+#include "../ldbl-128/s_ffmal.c"
diff --git a/sysdeps/ieee754/float128/s_f64fmaf128.c b/sysdeps/ieee754/float128/s_f64fmaf128.c
new file mode 100644 (file)
index 0000000..38caab5
--- /dev/null
@@ -0,0 +1,10 @@
+#define f32xfmaf64x __hide_f32xfmaf64x
+#define f32xfmaf128 __hide_f32xfmaf128
+#define f64fmaf64x __hide_f64fmaf64x
+#define f64fmaf128 __hide_f64fmaf128
+#include <float128_private.h>
+#undef f32xfmaf64x
+#undef f32xfmaf128
+#undef f64fmaf64x
+#undef f64fmaf128
+#include "../ldbl-128/s_dfmal.c"
diff --git a/sysdeps/ieee754/float128/s_f64xfmaf128.c b/sysdeps/ieee754/float128/s_f64xfmaf128.c
new file mode 100644 (file)
index 0000000..9eaec08
--- /dev/null
@@ -0,0 +1,2 @@
+#include <float128_private.h>
+#include "../ldbl-128/s_f64xfmaf128.c"
diff --git a/sysdeps/ieee754/ldbl-128/s_dfmal.c b/sysdeps/ieee754/ldbl-128/s_dfmal.c
new file mode 100644 (file)
index 0000000..e00ddba
--- /dev/null
@@ -0,0 +1,38 @@
+/* Fused multiply-add of long double (ldbl-128) value, narrowing the result
+   to double.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32xfmaf64x __hide_f32xfmaf64x
+#define f32xfmaf128 __hide_f32xfmaf128
+#define f64fmaf64x __hide_f64fmaf64x
+#define f64fmaf128 __hide_f64fmaf128
+#include <math.h>
+#undef f32xfmaf64x
+#undef f32xfmaf128
+#undef f64fmaf64x
+#undef f64fmaf128
+
+#include <math-narrow.h>
+
+double
+__dfmal (_Float128 x, _Float128 y, _Float128 z)
+{
+  NARROW_FMA_ROUND_TO_ODD (x, y, z, double, union ieee854_long_double, l,
+                          mantissa3, false);
+}
+libm_alias_double_ldouble (fma)
diff --git a/sysdeps/ieee754/ldbl-128/s_f64xfmaf128.c b/sysdeps/ieee754/ldbl-128/s_f64xfmaf128.c
new file mode 100644 (file)
index 0000000..8616451
--- /dev/null
@@ -0,0 +1,39 @@
+/* Fused multiply-add of _Float128 value, converting the result to _Float64x.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <math.h>
+#include <math-narrow.h>
+#include <tininess.h>
+
+/* math_ldbl.h defines _Float128 to long double for this directory,
+   but when they are different, this function must be defined with
+   _Float128 arguments to avoid defining an alias with an incompatible
+   type.  */
+#undef _Float128
+
+#if __HAVE_FLOAT64X_LONG_DOUBLE && __HAVE_DISTINCT_FLOAT128
+_Float64x
+__f64xfmaf128 (_Float128 x, _Float128 y, _Float128 z)
+{
+  NARROW_FMA_ROUND_TO_ODD (x, y, z, _Float64x, union ieee854_long_double, l,
+                          mantissa3, TININESS_AFTER_ROUNDING);
+}
+libm_alias_float64x_float128 (fma)
+#else
+/* Defined as an alias of fmal.  */
+#endif
diff --git a/sysdeps/ieee754/ldbl-128/s_ffmal.c b/sysdeps/ieee754/ldbl-128/s_ffmal.c
new file mode 100644 (file)
index 0000000..65d5e48
--- /dev/null
@@ -0,0 +1,34 @@
+/* Fused multiply-add of long double (ldbl-128) value, narrowing the result
+   to float.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32fmaf64x __hide_f32fmaf64x
+#define f32fmaf128 __hide_f32fmaf128
+#include <math.h>
+#undef f32fmaf64x
+#undef f32fmaf128
+
+#include <math-narrow.h>
+
+float
+__ffmal (_Float128 x, _Float128 y, _Float128 z)
+{
+  NARROW_FMA_ROUND_TO_ODD (x, y, z, float, union ieee854_long_double, l,
+                          mantissa3, false);
+}
+libm_alias_float_ldouble (fma)
index 4795e717e8ac0b6d9c1ea52ebacb5bd97e7ae5f7..bc90c8813f285caf398f35bc90e21d61b0d8507e 100644 (file)
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <fenv.h>
 #include <ieee754.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 #include <math-use-builtins.h>
 
 /* This implementation relies on long double being more than twice as
@@ -58,4 +63,5 @@ __fma (double x, double y, double z)
 }
 #ifndef __fma
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 #endif
index aff9efca8c3577334a73183228f9b17611cb9615..4595ad2bc5ccee7a025f904cb6326115759defcb 100644 (file)
 
 #define NO_MATH_REDIRECT
 #include <float.h>
+#define f64xfmaf128 __hide_f64xfmaf128
 #include <math.h>
+#undef f64xfmaf128
 #include <fenv.h>
 #include <ieee754.h>
 #include <math-barriers.h>
 #include <math_private.h>
 #include <libm-alias-ldouble.h>
+#include <math-narrow-alias.h>
 #include <tininess.h>
 #include <math-use-builtins.h>
 
@@ -303,3 +306,4 @@ __fmal (_Float128 x, _Float128 y, _Float128 z)
 #endif /* ! USE_FMAL_BUILTIN  */
 }
 libm_alias_ldouble (__fma, fma)
+libm_alias_ldouble_narrow (__fma, fma)
index 885ffb977ff0cc5e0703e510d29ed97d32dd935c..03a66134c47af2be89369c690b046a617e2743c6 100644 (file)
@@ -124,6 +124,8 @@ libm {
     __ynieee128;
   }
   GLIBC_2.35 {
+    __f32fmaieee128;
+    __f64fmaieee128;
     __f32sqrtieee128;
     __f64sqrtieee128;
   }
diff --git a/sysdeps/ieee754/ldbl-128ibm/s_dfmal.c b/sysdeps/ieee754/ldbl-128ibm/s_dfmal.c
new file mode 100644 (file)
index 0000000..644fe41
--- /dev/null
@@ -0,0 +1,28 @@
+/* Fused multiply-add of long double (ldbl-128ibm) value, narrowing the result
+   to double.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <math.h>
+#include <math-narrow.h>
+
+double
+__dfmal (long double x, long double y, long double z)
+{
+  NARROW_FMA_TRIVIAL (x, y, z, double, l);
+}
+libm_alias_double_ldouble (fma)
diff --git a/sysdeps/ieee754/ldbl-128ibm/s_ffmal.c b/sysdeps/ieee754/ldbl-128ibm/s_ffmal.c
new file mode 100644 (file)
index 0000000..e71c40c
--- /dev/null
@@ -0,0 +1,28 @@
+/* Fused multiply-add of long double (ldbl-128ibm) value, narrowing the result
+   to float.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <math.h>
+#include <math-narrow.h>
+
+float
+__ffmal (long double x, long double y, long double z)
+{
+  NARROW_FMA_TRIVIAL (x, y, z, float, l);
+}
+libm_alias_float_ldouble (fma)
diff --git a/sysdeps/ieee754/ldbl-96/s_dfmal.c b/sysdeps/ieee754/ldbl-96/s_dfmal.c
new file mode 100644 (file)
index 0000000..5a1ecf7
--- /dev/null
@@ -0,0 +1,34 @@
+/* Fused multiply-add of long double (ldbl-96) value, narrowing the result
+   to double.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32xfmaf64x __hide_f32xfmaf64x
+#define f64fmaf64x __hide_f64fmaf64x
+#include <math.h>
+#undef f32xfmaf64x
+#undef f64fmaf64x
+
+#include <math-narrow.h>
+
+double
+__dfmal (long double x, long double y, long double z)
+{
+  NARROW_FMA_ROUND_TO_ODD (x, y, z, double, union ieee854_long_double, l,
+                          mantissa1, false);
+}
+libm_alias_double_ldouble (fma)
diff --git a/sysdeps/ieee754/ldbl-96/s_ffmal.c b/sysdeps/ieee754/ldbl-96/s_ffmal.c
new file mode 100644 (file)
index 0000000..71f96b8
--- /dev/null
@@ -0,0 +1,32 @@
+/* Fused multiply-add of long double (ldbl-96) value, narrowing the result
+   to float.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32fmaf64x __hide_f32fmaf64x
+#include <math.h>
+#undef f32fmaf64x
+
+#include <math-narrow.h>
+
+float
+__ffmal (long double x, long double y, long double z)
+{
+  NARROW_FMA_ROUND_TO_ODD (x, y, z, float, union ieee854_long_double, l,
+                          mantissa1, false);
+}
+libm_alias_float_ldouble (fma)
index 417c27e53492f674ed5d2cea430da6c0a33a822e..025c60651e2d6c4a9843b01fb008dc427313cf9c 100644 (file)
 
 #define NO_MATH_REDIRECT
 #include <float.h>
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <fenv.h>
 #include <ieee754.h>
 #include <math-barriers.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 /* This implementation uses rounding to odd to avoid problems with
    double rounding.  See a paper by Boldo and Melquiond:
@@ -97,4 +102,5 @@ __fma (double x, double y, double z)
 }
 #ifndef __fma
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 #endif
index dff53cc0d8a5c408f470a269eb1f580afaaa6837..6b21680033d0d925da9026ff72831c0a39767b5f 100644 (file)
@@ -45,7 +45,7 @@ libnldbl-calls = asprintf dprintf fprintf fscanf fwprintf fwscanf iovfscanf \
                 nextup nextdown totalorder totalordermag getpayload \
                 canonicalize setpayload setpayloadsig llogb fmaxmag fminmag \
                 roundeven fromfp ufromfp fromfpx ufromfpx fadd dadd \
-                fdiv ddiv fmul dmul fsqrt dsqrt fsub dsub
+                fdiv ddiv ffma dfma fmul dmul fsqrt dsqrt fsub dsub
 libnldbl-routines = $(libnldbl-calls:%=nldbl-%)
 libnldbl-inhibit-o = $(object-suffixes)
 libnldbl-static-only-routines = $(libnldbl-routines)
@@ -89,6 +89,7 @@ CFLAGS-nldbl-ctan.c = -fno-builtin-ctanl
 CFLAGS-nldbl-ctanh.c = -fno-builtin-ctanhl
 CFLAGS-nldbl-dadd.c = -fno-builtin-daddl
 CFLAGS-nldbl-ddiv.c = -fno-builtin-ddivl
+CFLAGS-nldbl-dfma.c = -fno-builtin-dfmal
 CFLAGS-nldbl-dmul.c = -fno-builtin-dmull
 CFLAGS-nldbl-dsqrt.c = -fno-builtin-dsqrtl
 CFLAGS-nldbl-dsub.c = -fno-builtin-dsubl
@@ -102,6 +103,7 @@ CFLAGS-nldbl-fabs.c = -fno-builtin-fabsl
 CFLAGS-nldbl-fadd.c = -fno-builtin-faddl
 CFLAGS-nldbl-fdim.c = -fno-builtin-fdiml
 CFLAGS-nldbl-fdiv.c = -fno-builtin-fdivl
+CFLAGS-nldbl-ffma.c = -fno-builtin-ffmal
 CFLAGS-nldbl-finite.c = -fno-builtin-finitel
 CFLAGS-nldbl-floor.c = -fno-builtin-floorl
 CFLAGS-nldbl-fma.c = -fno-builtin-fmal
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-dfma.c b/sysdeps/ieee754/ldbl-opt/nldbl-dfma.c
new file mode 100644 (file)
index 0000000..291f3e0
--- /dev/null
@@ -0,0 +1,28 @@
+/* Compatibility routine for IEEE double as long double for dfma.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define dfmal __hide_dfmal
+#include "nldbl-compat.h"
+#undef dfmal
+
+double
+attribute_hidden
+dfmal (double x, double y, double z)
+{
+  return fma (x, y, z);
+}
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-ffma.c b/sysdeps/ieee754/ldbl-opt/nldbl-ffma.c
new file mode 100644 (file)
index 0000000..feabea5
--- /dev/null
@@ -0,0 +1,28 @@
+/* Compatibility routine for IEEE double as long double for ffma.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define ffmal __hide_ffmal
+#include "nldbl-compat.h"
+#undef ffmal
+
+float
+attribute_hidden
+ffmal (double x, double y, double z)
+{
+  return ffma (x, y, z);
+}
diff --git a/sysdeps/ieee754/soft-fp/s_dfmal.c b/sysdeps/ieee754/soft-fp/s_dfmal.c
new file mode 100644 (file)
index 0000000..6e8b081
--- /dev/null
@@ -0,0 +1,74 @@
+/* Fused multiply-add of long double (ldbl-128) values, narrowing the result to
+   double, using soft-fp.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32xfmaf64x __hide_f32xfmaf64x
+#define f32xfmaf128 __hide_f32xfmaf128
+#define f64fmaf64x __hide_f64fmaf64x
+#define f64fmaf128 __hide_f64fmaf128
+#include <math.h>
+#undef f32xfmaf64x
+#undef f32xfmaf128
+#undef f64fmaf64x
+#undef f64fmaf128
+
+#include <math-narrow.h>
+#include <libc-diag.h>
+
+/* R_e is not set in cases where it is not used in packing, but the
+   compiler does not see that it is set in all cases where it is
+   used, resulting in warnings that it may be used uninitialized.
+   The location of the warning differs in different versions of GCC,
+   it may be where R is defined using a macro or it may be where the
+   macro is defined.  */
+DIAG_PUSH_NEEDS_COMMENT;
+DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wmaybe-uninitialized");
+
+#include <soft-fp.h>
+#include <double.h>
+#include <quad.h>
+
+double
+__dfmal (_Float128 x, _Float128 y, _Float128 z)
+{
+  FP_DECL_EX;
+  FP_DECL_Q (X);
+  FP_DECL_Q (Y);
+  FP_DECL_Q (Z);
+  FP_DECL_Q (R);
+  FP_DECL_D (RN);
+  double ret;
+
+  FP_INIT_ROUNDMODE;
+  FP_UNPACK_Q (X, x);
+  FP_UNPACK_Q (Y, y);
+  FP_UNPACK_Q (Z, z);
+  FP_FMA_Q (R, X, Y, Z);
+#if _FP_W_TYPE_SIZE < 64
+  FP_TRUNC_COOKED (D, Q, 2, 4, RN, R);
+#else
+  FP_TRUNC_COOKED (D, Q, 1, 2, RN, R);
+#endif
+  FP_PACK_D (ret, RN);
+  FP_HANDLE_EXCEPTIONS;
+  CHECK_NARROW_FMA (ret, x, y, z);
+  return ret;
+}
+DIAG_POP_NEEDS_COMMENT;
+
+libm_alias_double_ldouble (fma)
diff --git a/sysdeps/ieee754/soft-fp/s_ffma.c b/sysdeps/ieee754/soft-fp/s_ffma.c
new file mode 100644 (file)
index 0000000..3ab5844
--- /dev/null
@@ -0,0 +1,72 @@
+/* Fused multiply-add of double values, narrowing the result to float,
+   using soft-fp.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32fmaf64 __hide_f32fmaf64
+#define f32fmaf32x __hide_f32fmaf32x
+#define ffmal __hide_ffmal
+#include <math.h>
+#undef f32fmaf64
+#undef f32fmaf32x
+#undef ffmal
+
+#include <math-narrow.h>
+#include <libc-diag.h>
+
+/* R_e is not set in cases where it is not used in packing, but the
+   compiler does not see that it is set in all cases where it is
+   used, resulting in warnings that it may be used uninitialized.
+   The location of the warning differs in different versions of GCC,
+   it may be where R is defined using a macro or it may be where the
+   macro is defined.  */
+DIAG_PUSH_NEEDS_COMMENT;
+DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wmaybe-uninitialized");
+
+#include <soft-fp.h>
+#include <single.h>
+#include <double.h>
+
+float
+__ffma (double x, double y, double z)
+{
+  FP_DECL_EX;
+  FP_DECL_D (X);
+  FP_DECL_D (Y);
+  FP_DECL_D (Z);
+  FP_DECL_D (R);
+  FP_DECL_S (RN);
+  float ret;
+
+  FP_INIT_ROUNDMODE;
+  FP_UNPACK_D (X, x);
+  FP_UNPACK_D (Y, y);
+  FP_UNPACK_D (Z, z);
+  FP_FMA_D (R, X, Y, Z);
+#if _FP_W_TYPE_SIZE < _FP_FRACBITS_D
+  FP_TRUNC_COOKED (S, D, 1, 2, RN, R);
+#else
+  FP_TRUNC_COOKED (S, D, 1, 1, RN, R);
+#endif
+  FP_PACK_S (ret, RN);
+  FP_HANDLE_EXCEPTIONS;
+  CHECK_NARROW_FMA (ret, x, y, z);
+  return ret;
+}
+DIAG_POP_NEEDS_COMMENT;
+
+libm_alias_float_double (fma)
diff --git a/sysdeps/ieee754/soft-fp/s_ffmal.c b/sysdeps/ieee754/soft-fp/s_ffmal.c
new file mode 100644 (file)
index 0000000..15e537e
--- /dev/null
@@ -0,0 +1,70 @@
+/* Fused multiply-add of long double (ldbl-128) values, narrowing the result to
+   float, using soft-fp.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#define f32fmaf64x __hide_f32fmaf64x
+#define f32fmaf128 __hide_f32fmaf128
+#include <math.h>
+#undef f32fmaf64x
+#undef f32fmaf128
+
+#include <math-narrow.h>
+#include <libc-diag.h>
+
+/* R_e is not set in cases where it is not used in packing, but the
+   compiler does not see that it is set in all cases where it is
+   used, resulting in warnings that it may be used uninitialized.
+   The location of the warning differs in different versions of GCC,
+   it may be where R is defined using a macro or it may be where the
+   macro is defined.  */
+DIAG_PUSH_NEEDS_COMMENT;
+DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wmaybe-uninitialized");
+
+#include <soft-fp.h>
+#include <single.h>
+#include <quad.h>
+
+float
+__ffmal (_Float128 x, _Float128 y, _Float128 z)
+{
+  FP_DECL_EX;
+  FP_DECL_Q (X);
+  FP_DECL_Q (Y);
+  FP_DECL_Q (Z);
+  FP_DECL_Q (R);
+  FP_DECL_S (RN);
+  float ret;
+
+  FP_INIT_ROUNDMODE;
+  FP_UNPACK_Q (X, x);
+  FP_UNPACK_Q (Y, y);
+  FP_UNPACK_Q (Z, z);
+  FP_FMA_Q (R, X, Y, Z);
+#if _FP_W_TYPE_SIZE < 64
+  FP_TRUNC_COOKED (S, Q, 1, 4, RN, R);
+#else
+  FP_TRUNC_COOKED (S, Q, 1, 2, RN, R);
+#endif
+  FP_PACK_S (ret, RN);
+  FP_HANDLE_EXCEPTIONS;
+  CHECK_NARROW_FMA (ret, x, y, z);
+  return ret;
+}
+DIAG_POP_NEEDS_COMMENT;
+
+libm_alias_float_ldouble (fma)
index 4b0d6b50aab83440206d01073c4c6cbb8d7bdbba..d3870452dd43c891ec3008facd0a40010fd73c7d 100644 (file)
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <libc-diag.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 /* R_e is not set in cases where it is not used in packing, but the
    compiler does not see that it is set in all cases where it is
@@ -66,4 +71,5 @@ DIAG_POP_NEEDS_COMMENT;
 
 #ifndef __fma
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 #endif
index aecec139235914aed80c69f71bd9e9f8cfd4db6d..7be917a46e9536caa11233d8da0e378a27736b3a 100644 (file)
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define f64xfmaf128 __hide_f64xfmaf128
 #include <math.h>
+#undef f64xfmaf128
 #include <libc-diag.h>
 #include <libm-alias-ldouble.h>
+#include <math-narrow-alias.h>
 
 /* R_e is not set in cases where it is not used in packing, but the
    compiler does not see that it is set in all cases where it is
@@ -65,3 +68,4 @@ __fmal (long double a, long double b, long double c)
 DIAG_POP_NEEDS_COMMENT;
 
 libm_alias_ldouble (__fma, fma)
+libm_alias_ldouble_narrow (__fma, fma)
index 1a107a67dc54d2f36faa868d5636d14999464790..51e1bc00fdc1ba7d644d2f71f9dbbfad36285edd 100644 (file)
@@ -1089,16 +1089,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index fda4ca410647e854000a5360652f5cad4a86b055..5f2b90bc7492014009659ca4221afdc943cdf85c 100644 (file)
@@ -1250,12 +1250,28 @@ ldouble: 1
 Function: "fma_downward":
 ldouble: 1
 
+Function: "fma_downward_ldouble":
+double: 1
+float: 1
+
+Function: "fma_ldouble":
+double: 1
+float: 1
+
 Function: "fma_towardzero":
 ldouble: 2
 
+Function: "fma_towardzero_ldouble":
+double: 1
+float: 1
+
 Function: "fma_upward":
 ldouble: 3
 
+Function: "fma_upward_ldouble":
+double: 1
+float: 1
+
 Function: "fmod":
 ldouble: 1
 
index abab686aa920c87e404d9d30292792d765fc4c21..6d6f6b50297da7328f56245ae5d1a52ec8100c80 100644 (file)
    from _Float128 implementation objects.  */
 #include <libm-alias-float128.h>
 #include <libm-alias-finite.h>
+#include <math-narrow-alias.h>
 
 #undef libm_alias_float128_r
 #undef libm_alias_finite
 #undef libm_alias_exclusive_ldouble
 #undef libm_alias_float128_other_r_ldbl
+#undef libm_alias_float128_narrow
 #undef declare_mgen_finite_alias
 #undef declare_mgen_alias
 #undef declare_mgen_alias_r
@@ -38,6 +40,7 @@
 #define libm_alias_float128_r(from, to, r)
 #define libm_alias_exclusive_ldouble(from, to)
 #define libm_alias_float128_other_r_ldbl(from, to, r)
+#define libm_alias_float128_narrow(from, to)
 #define declare_mgen_finite_alias(from, to)
 #define declare_mgen_alias(from, to)
 #define declare_mgen_alias_r(from, to)
index 392c66b63d3036c19d776b3229e8822ca2666909..bbe8057426de429c6ef311c00b0143d2537b48d1 100644 (file)
 
 /* Include the real math.h to avoid optimizations caused by include/math.h
    (e.x fabsf128 prototype is masked by an inline definition).*/
+#define f64xfmaf128 __hide_f64xfmaf128
 #define f64xsqrtf128 __hide_f64xsqrtf128
 #include <math/math.h>
+#undef f64xfmaf128
 #undef f64xsqrtf128
 #include <math_private.h>
 #include <complex.h>
 /* scalbnf128 is an alias of ldexpf128.  */
 #define DECL_ALIAS_s_ldexp(f) MAKE_IFUNCP_R (f,) MAKE_IFUNCP_WRAP_R (wrap_, scalbn,)
 
+/* f64xfmaf128 is an alias of fmaf128.  */
+#define DECL_ALIAS_s_fma(f) MAKE_IFUNCP_R (f,) libm_alias_float128_narrow (__fma, fma)
+
 /* f64xsqrtf128 is an alias of sqrtf128.  */
 #define DECL_ALIAS_w_sqrt(f) MAKE_IFUNCP_R (f,) libm_alias_float128_narrow (__sqrt, sqrt)
 
index 7f39cefc711d0c438589986e03169a3f38b30a69..e52751ff2cb1be2a50eb9e37987386d596228615 100644 (file)
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <fenv.h>
 #include <ieee754.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 double
 __fma (double x, double y, double z)
@@ -29,3 +34,4 @@ __fma (double x, double y, double z)
   return x;
 }
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
index 95f2cea66cb3d8d2e5562f308b4098f856694b84..e09eb1a679177fc3439e8e0aae37c411252cffbb 100644 (file)
@@ -1,11 +1,17 @@
 #define NO_MATH_REDIRECT
 #include <sparc-ifunc.h>
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <math_ldbl_opt.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 extern double __fma_vis3 (double, double, double);
 extern double __fma_generic (double, double, double);
 
 sparc_libm_ifunc(__fma, hwcap & HWCAP_SPARC_FMAF ? __fma_vis3 : __fma_generic);
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
index 44066eed46472b86a7d25db65eb40e8982e2d5bf..abaa6acbe193e5b55d4bf7b7b486c3228bf3ac13 100644 (file)
@@ -1,7 +1,12 @@
 #define NO_MATH_REDIRECT
 #include <sparc-ifunc.h>
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 extern __typeof (fma) __fma_vis3 attribute_hidden;
 extern __typeof (fma) __fma_generic attribute_hidden;
@@ -11,3 +16,4 @@ sparc_libm_ifunc (__fma,
                  ? __fma_vis3
                  : __fma_generic);
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
index 74f203575fb82bcc2fc5eb2800a61e45d57dc12a..9bf30560a0d67d11d90abc3879dc95cefbfbec68 100644 (file)
@@ -1054,16 +1054,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index e3c619e77a9189b9eb1b4d7789c602f1061a409c..a1ad3c768226142b9a16892db5491c2cfb213981 100644 (file)
@@ -1111,17 +1111,30 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index cedb2ffcc42d363711c6295bde7f961463ab7ae7..32aa436456cf2b67621ca93c6bc6dd68a124b146 100644 (file)
@@ -697,9 +697,15 @@ GLIBC_2.32 ynf32 F
 GLIBC_2.32 ynf32x F
 GLIBC_2.32 ynf64 F
 GLIBC_2.32 ynl F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 97f328dbbdf497ac1d379ed3713b8e6e433b3e82..6567ac77306d709cb05d33323b19308b9dc0c1c1 100644 (file)
@@ -471,10 +471,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 _LIB_VERSION D 0x4
index 97f328dbbdf497ac1d379ed3713b8e6e433b3e82..6567ac77306d709cb05d33323b19308b9dc0c1c1 100644 (file)
@@ -471,10 +471,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 _LIB_VERSION D 0x4
index 88761113e6745bdc0e8cc07e5615e14d25fb0b34..e76270cf1d383e7beca246087f74238f933de646 100644 (file)
@@ -763,9 +763,15 @@ GLIBC_2.31 totalordermagf32 F
 GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index c32ff03983828d659fcc26485cc6bd663cb6b07c..8c80c9f2af47b1d6548ed88a3f85430367e270e8 100644 (file)
@@ -782,10 +782,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 exp2l F
index 2a2b290dc929f8f3a027839321d1935fdac623d4..51ebd7f2272b1324facbf7ad9a986cbd49671d15 100644 (file)
@@ -1096,16 +1096,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 47511731f89ae2d74b857cf3d69e0c9e389800bd..a81777148422979318e6acfe6df2dfcf8d44f2ac 100644 (file)
@@ -1026,16 +1026,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 97f328dbbdf497ac1d379ed3713b8e6e433b3e82..6567ac77306d709cb05d33323b19308b9dc0c1c1 100644 (file)
@@ -471,10 +471,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 _LIB_VERSION D 0x4
index 6925a90820522f57580a173bc59cf0d66f40b822..3503533664ff08d1d4e7d371661c7b600b97b6c8 100644 (file)
@@ -822,9 +822,15 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 65ade6d2728e217ba77fd3fe7954f84fb601cb07..3115cd6afe10b02cf766b017d2d1b5dbea3eaaa6 100644 (file)
@@ -783,9 +783,15 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 65ade6d2728e217ba77fd3fe7954f84fb601cb07..3115cd6afe10b02cf766b017d2d1b5dbea3eaaa6 100644 (file)
@@ -783,9 +783,15 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index f53f8d86c5e5294e9ce3ced7f5142f4699059950..82995a9c3b9c7bd270aca295a8a353f614856303 100644 (file)
@@ -782,10 +782,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 exp2l F
index 1abb41514c7f400ca54bc452aa4efe2cd35ad921..df8eaa2dba8140e83a648557a501595ef8f42ea4 100644 (file)
@@ -1054,16 +1054,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 8cac2ab0052d13a7c493feda8c64e58d8180a930..df148c19909086dd2894f910135568c568109198 100644 (file)
@@ -783,9 +783,15 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 6c70bd6de3b13e6606007493dbcb3a7c151d6776..ff9046d2436e1c9c42525128fe92a57851d6951f 100644 (file)
@@ -828,10 +828,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index dd7f2c30c9afcfd3e14dfabd0bb26f7287cd19d7..24cfb00ce63eb395b7e51ebd6f7bffe0ef28aded 100644 (file)
@@ -827,10 +827,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index aac3ff683f5a8fb7de37d36fd0f6e165595c8dfb..29d489272272b345bc08c465f976f6fa6fa73704 100644 (file)
@@ -821,10 +821,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index 7fe920d4d47e0c38f775fa93b7138227fa54cdc8..07753c0ccec01d471046a2b33bd15579c460bafa 100644 (file)
@@ -1214,18 +1214,33 @@ GLIBC_2.32 __y0ieee128 F
 GLIBC_2.32 __y1ieee128 F
 GLIBC_2.32 __ynieee128 F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 __f32fmaieee128 F
 GLIBC_2.35 __f32sqrtieee128 F
+GLIBC_2.35 __f64fmaieee128 F
 GLIBC_2.35 __f64sqrtieee128 F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index a8638faa6f1accc18a1a29a89876cf98b5b89691..ed5bd3bf6bdd1fe7a8c5d3b20d13d9191cdf2834 100644 (file)
@@ -938,16 +938,29 @@ GLIBC_2.33 ynf32x F
 GLIBC_2.33 ynf64 F
 GLIBC_2.33 ynf64x F
 GLIBC_2.33 ynl F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index dc682a7c529b75f298b20559625a8c3c007fc25b..e592d9da6edab5c6de83cafd031a1d49eff2d73f 100644 (file)
@@ -1035,16 +1035,29 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 5d2abaa2db023c7f462b492d3235b632308e0e76..6f556473981243baed4180c7bfebb96e63a23fd3 100644 (file)
@@ -1055,17 +1055,30 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index f41c9f7a29083cc4a6254ec52ed626f8eb53f65f..237a880c6a265a594d2c0f178e21177aae291a68 100644 (file)
@@ -1055,17 +1055,30 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index 6a379eced4977c223306dc0ffa05d0fc7522749f..bdd8edfa13a432a208f21948004e65dee76fb84c 100644 (file)
@@ -782,10 +782,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 exp2l F
index 6a379eced4977c223306dc0ffa05d0fc7522749f..bdd8edfa13a432a208f21948004e65dee76fb84c 100644 (file)
@@ -782,10 +782,16 @@ GLIBC_2.31 totalordermagf32x F
 GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
+GLIBC_2.35 f32xfmaf64 F
 GLIBC_2.35 f32xsqrtf64 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 exp2l F
index e06572a3f940a3db9ccb9b798ea8eb48838145ba..76ab323332df832291a19bd40b06408fd30ed754 100644 (file)
@@ -1062,17 +1062,30 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
 GLIBC_2.4 __clog10l F
index 6d1e4ae31afd8acbd5b7e1ddc98b8e491dfa58ff..d1c2fe67146ef1e82f7084e6b3091593529f3e4d 100644 (file)
@@ -1054,16 +1054,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 7185df2a42590987c61133c9ccd923eb57ecd7d2..13e1d9f0c831d463547115b8270c5650cc82be8e 100644 (file)
@@ -1087,16 +1087,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 9b29d72d2efbfc8f64c4a2702ba0bec2ef23fd34..40b5f7f9b0316adcdc2da92a00ce1d428a314e8a 100644 (file)
@@ -1087,16 +1087,29 @@ GLIBC_2.31 totalordermagf64 F
 GLIBC_2.31 totalordermagf64x F
 GLIBC_2.31 totalordermagl F
 GLIBC_2.32 exp10f F
+GLIBC_2.35 dfmal F
 GLIBC_2.35 dsqrtl F
+GLIBC_2.35 f32fmaf128 F
+GLIBC_2.35 f32fmaf32x F
+GLIBC_2.35 f32fmaf64 F
+GLIBC_2.35 f32fmaf64x F
 GLIBC_2.35 f32sqrtf128 F
 GLIBC_2.35 f32sqrtf32x F
 GLIBC_2.35 f32sqrtf64 F
 GLIBC_2.35 f32sqrtf64x F
+GLIBC_2.35 f32xfmaf128 F
+GLIBC_2.35 f32xfmaf64 F
+GLIBC_2.35 f32xfmaf64x F
 GLIBC_2.35 f32xsqrtf128 F
 GLIBC_2.35 f32xsqrtf64 F
 GLIBC_2.35 f32xsqrtf64x F
+GLIBC_2.35 f64fmaf128 F
+GLIBC_2.35 f64fmaf64x F
 GLIBC_2.35 f64sqrtf128 F
 GLIBC_2.35 f64sqrtf64x F
+GLIBC_2.35 f64xfmaf128 F
 GLIBC_2.35 f64xsqrtf128 F
+GLIBC_2.35 ffma F
+GLIBC_2.35 ffmal F
 GLIBC_2.35 fsqrt F
 GLIBC_2.35 fsqrtl F
index 89389dd77f490e13f0499efc9e7f3be22859103c..fedce2c2c76ce380f026f1c4fcb1fa753b72be73 100644 (file)
 
 #define NO_MATH_REDIRECT
 #include <config.h>
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <init-arch.h>
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 extern double __fma_sse2 (double x, double y, double z) attribute_hidden;
 
@@ -45,6 +50,7 @@ libm_ifunc (__fma, CPU_FEATURE_USABLE (FMA)
            ? __fma_fma3 : (CPU_FEATURE_USABLE (FMA4)
                            ? __fma_fma4 : __fma_sse2));
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 
 #define __fma __fma_sse2